Created by OvM
Features:
- PERFECT BASKETBALL\
Instructions : go to the gym and click on the basketball thing. Once you have been told to hit as many shots as possible, hit right shift, once time is up, right shift once again. (Script must be executed)
local UIS = game:GetService("UserInputService")
local shootBalls = false
UIS.InputBegan:Connect(function(inn)
if (inn.KeyCode == Enum.KeyCode.RightShift) then
if (shootBalls == true) then
shootBalls = false
else
shootBalls = true
end
end
end)
while wait() do
if (shootBalls == true) then
game:GetService("ReplicatedStorage").Activities.Events.Basketball:FireServer("Shoot","Perfect")
end
end
ENJOY!