Advertisement
magnetos

nosteal dropoffs hoopz and practice

Oct 2nd, 2021 (edited)
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.51 KB | None | 0 0
  1. --tired of people stealin yo ball when u wanna practice? press x to enable this nosteal script, (also makes it so u cant pick it up either :cry:)
  2. local plr = game.Players.LocalPlayer.Character
  3. local uis = game:GetService("UserInputService")
  4.  
  5. uis.InputBegan:Connect(function(key, gpe)
  6.     if not gpe and key.KeyCode == Enum.KeyCode.Y then
  7.         for i,v in pairs(plr.Character:GetDescendants()) do
  8.             if v.Name == "Ball" then
  9.                 if v:FindFirstChild("TouchInterest") then
  10.                     v:Destroy()
  11.                 end
  12.             end
  13.         end
  14.     end
  15. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement