Advertisement
Guest User

R15 Flying ablity script

a guest
Feb 5th, 2018
7,098
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. local plr = game:GetService("Players").LocalPlayer
  2. local char = plr.Character
  3. local uis = game:GetService("UserInputService")
  4.  
  5.  
  6. uis.InputBegan:connect(function(key)
  7.     if key.KeyCode == Enum.KeyCode.F then
  8.         if not char.UpperTorso:FindFirstChild("BodyForce") then
  9.             local b = Instance.new("BodyForce", char.UpperTorso)
  10.             b.Force = Vector3.new(0,4990,0)
  11.         end
  12.     end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement