Advertisement
DarthPresidente

Dylan Script

Aug 1st, 2021
1,398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.19 KB | None | 0 0
  1. local count,phase = 0,.5
  2. while true do
  3.     script.Parent.CFrame = script.Parent.CFrame+Vector3.new(0,phase,0)
  4.     if count == 50 then
  5.         phase = phase * -1
  6.         count = 0
  7.     end
  8.     count = count + 1
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement