Advertisement
Laith8888

Roblox HeadSquish script

Feb 8th, 2018
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1.  
  2. plr=game.Players.LocalPlayer
  3. w=Instance.new("Weld", plr.Character.Head)
  4. w.Part0 = plr.Character.Head
  5. w.Part1 = plr.Character.Torso
  6. w.C0 = CFrame.new(0,-1.5,0) * CFrame.Angles(0,0,0)
  7. num = -3
  8. while true do
  9. for i = 1, 8 do
  10. wait()
  11. num = num + 1
  12. w.C0 = CFrame.new(0,-1.5,0) * CFrame.Angles(math.pi/180*num*8,0,0)
  13. end
  14. for i = 1, 8 do
  15. wait()
  16. num = num - 1
  17. w.C0 = CFrame.new(0,-1.5,0) * CFrame.Angles(math.pi/180*num*8,0,0)
  18. end end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement