CheekyVFX

Field Goal Simulator Script for Cheeky

Apr 10th, 2022
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. (Field Goal Simulator Script)
  2.  
  3. local uis = game:GetService("UserInputService")
  4.  
  5. uis.InputBegan:Connect(function(key)
  6. if uis:GetFocusedTextBox() then return end
  7.  
  8. if key.KeyCode == Enum.KeyCode.R then
  9. local ohString1 = "Start"
  10.  
  11. game.Players.LocalPlayer.Character.Ball.ServerEvent:FireServer(ohString1)
  12. wait(.5)
  13. local ohString1 = "Accuracy"
  14. local ohNumber2 = 1
  15.  
  16. game.Players.LocalPlayer.Character.Ball.ServerEvent:FireServer(ohString1, ohNumber2)
  17. end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment