Advertisement
Guest User

rbworld

a guest
Jan 26th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. mouse = plr:GetMouse()
  3.  
  4. mouse.KeyDown:connect(function(key)
  5. if key == "e" then
  6. for i,ws in pairs(workspace:children()) do
  7. if ws.Name == "Basketball" then
  8. if ws.controller.Value == game.Players.LocalPlayer.Name then
  9. game.ReplicatedStorage.gameplay.character.value:FireServer("shooting", true)
  10. ws.shoot:FireServer(workspace.Court1._Hoop1, 99, true)
  11. end
  12. end
  13. end
  14. end
  15. en
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement