#Camera positions and transitioning
1 messages · Page 1 of 1 (latest)
tween servide
@fast citrus
local part = workspace.part
local pos1 = Vector3.new(0, 0, 0)
local pos2 = Vector3.new(0, 10, 0)
local Service = game:GetService("TweenService")
while true do
local tween = Service:Create(Part, TweenInfo.new(5), {position = pos2})
tween:Play()
tween.Completed:Wait()
local tween = Service:Create(Part, TweenInfo.new(5), {position = pos1})
tween:Play()
tween.Completed:Wait()
end
or use CFrame
and this would be a local script? or no
** You are now Level 1! **
yes it would