of     1   

Scootakip
#160941646Sunday, April 26, 2015 12:01 AM GMT

while true do local Derp = workspace.Pert local Start = Vector3.new(162, 46.5, -69) wait(5) Derp.Position = Start end I need it to repeat but it won't repeat. I thought that while true do made it repeat but that's not working. Some help, please?
OfficialLogan
#160942193Sunday, April 26, 2015 12:08 AM GMT

Try to do it like this: while true do local Derp = ("Part, game.Workspace") local Start = Vector3.new(162, 46.5, -69) wait(5) end

    of     1