Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- speed = 2
- -------------------------
- local par = script.Parent
- par.Anchored = true
- par.CustomPhysicalProperties = PhysicalProperties.new(10,.3,.5)
- local thou = 100000000
- local bp = Instance.new("BodyPosition",par)
- bp.P = thou
- bp.MaxForce = Vector3.new(bp.P,bp.P,bp.P)
- bp.Position = par.Position
- local bav = Instance.new("BodyAngularVelocity",par)
- bav.P = thou
- bav.MaxTorque = Vector3.new(bav.P,bav.P,bav.P)
- bav.AngularVelocity = Vector3.new(0,speed,0)
- local bg = Instance.new("BodyGyro",par)
- bg.P = thou
- bg.MaxTorque = Vector3.new(bg.P,0,bg.P)
- par.Anchored = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement