Advertisement
DrakerMaker

Gravity Command

Nov 4th, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. local f = Instance.new("BodyForce", owner.Character.HumanoidRootPart)
  2. f.Force = Vector3.new(0, 1500, 0)
  3. owner.Chatted:connect(function(msg)
  4. if msg:sub(1,2) == "/g" then
  5. f.Force = Vector3.new(0, msg:sub(4), 0)
  6. end
  7. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement