Advertisement
guy123457

Untitled

Feb 1st, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. local input2 = game:GetService("UserInputService")
  2.  
  3. input2.InputBegan:Connect(function(input)
  4. if input.UserInputType == Enum.UserInputType.Keyboard then
  5. if input.KeyCode == Enum.KeyCode.Comma then
  6. game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  7. end
  8. end
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement