Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- PASTEBINnew pasteAPI tools faq
- Guest User
- -
- Public Pastes
- Untitled
- 7 sec ago
- Untitled
- 13 sec ago
- Untitled
- JavaScript | 17 sec ago
- Untitled
- 19 sec ago
- Untitled
- 26 sec ago
- Untitled
- 30 sec ago
- Untitled
- 38 sec ago
- Untitled
- 39 sec ago
- daily pastebin goal
- 5%
- help support pastebin
- SHARE
- TWEET
- AIMBOT!
- A GUEST NOV 21ST, 2017 4,417 NEVER
- Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- rawdownloadcloneembedreportprint text 1.38 KB
- --// RBW2 UPDATED //--
- -- works here; https://www.roblox.com/games/593223204/RB-Westlake-Park
- --// MAINVARS //--
- remotes = game:GetService("ReplicatedStorage").gameplay
- mouse = game.Players.LocalPlayer:GetMouse()
- --// EDITVARS //--
- _G.accuracy = 99 -- Accuracy; 99 Makes it in almost always; 100 is always a green;
- _G.key = "f" -- Key to press to activate;
- --// SCRIPT //--
- print("Press f to shoot! \nPress q to toggle accuracy between 99 and 100!")
- --// ACCURACY SWITCH
- mouse.KeyDown:connect(function(k)
- if k == "q" then
- if _G.accuracy == 99 then
- _G.accuracy = 100
- elseif _G.accuracy == 100 then
- _G.accuracy = 99
- end
- print(_G.accuracy)
- end
- end)
- --// SHOOT
- mouse.KeyDown:connect(function(k)
- if k == _G.key then
- for _,v in pairs(game.Workspace:GetChildren()) do
- if v.Name == "Basketball" then
- if v.controller.Value == game.Players.LocalPlayer.Name then
- local oncourt = "Court"..tonumber(game.Players.LocalPlayer.System.OnCourt.Value)
- local onhoop = "_Hoop"..tonumber(game.Players.LocalPlayer.System.OnTeam.Value)
- remotes.character.value:FireServer("shooting", true)
- if game.Workspace[oncourt]:FindFirstChild(onhoop) then
- v.shoot:FireServer(game.Workspace[oncourt][onhoop], _G.accuracy, true)
- elseif game.Workspace[oncourt]:FindFirstChild("_Hoop1") then
- v.shoot:FireServer(game.Workspace[oncourt]["_Hoop1"], _G.accuracy, true)
- end
- end
- end
- end
- end
- end)
- RAW Paste Data
- We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookie Policy. OK, I Understand
- IT'S TEAMWORK, BUT SIMPLER, MORE PLEASANT AND MORE PRODUCTIVE.
- create new paste / dealsnew! / api / scraping api / syntax languages / archive / faq / tools / go
- privacy statement / cookies policy / terms of service / security disclosure / dmca / contact
- By using Pastebin.com you agree to our cookies policy to enhance your experience.
- Site design & logo © 2018 Pastebin; user contributions (pastes) licensed under cc by-sa 3.0 -- Dedicated Server Hosting by Steadfast
- Top
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement