of     1   

ClintBlocker
#228388566Sunday, December 03, 2017 5:56 PM GMT

How do I make it that a part continuously moves left then right in a loop using "CFrames"?mm
Spectrum555
#228388647Sunday, December 03, 2017 5:58 PM GMT

while true do part.CFrame = CFrame.new(10,0,0) wait(1) part.CFrame = CFrame.new(-10,0,0) end
chexyalani
#228388680Sunday, December 03, 2017 5:58 PM GMT

#### Local Script in StarterPlayerScripts -]] local part=workspace.Part local rs=game:GeyService("RunService") local sin=math.sin rs.RenderStepped:Connect(function() part.CFrame=part.CFrame*CFrame.new(0,0,sin(tick())*1/10) end)
ClintBlocker
#228388828Sunday, December 03, 2017 6:01 PM GMT

Thanks for the help Spectrum, that's exactly what I meant!

    of     1