Advertisement
IHATEMICROWAVEOVEN

speen

Aug 17th, 2022
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. local part = script.Parent
  2.  
  3. local bv = Instance.new("BodyVelocity")
  4. bv.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
  5. bv.Parent = part
  6.  
  7. print("sjahd")
  8.  
  9. local av = Instance.new("AngularVelocity")
  10. av.AngularVelocity = Vector3.new(0, 5, 0)
  11. av.MaxTorque = math.huge
  12. local att0 = Instance.new("Attachment", part)
  13. --att0.CFrame = part.CFrame * CFrame.new(0, -8, 0)
  14. av.Attachment0 = att0
  15. av.Parent = part
  16. --av.RelativeTo = Enum.ActuatorRelativeTo(0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement