RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"A server script that removes the "Tackle" tool from you when you get the "Football" tool"
local Players = game:GetService("Players") Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) local footballTool = character:WaitForChild("Football") footballTool.Equipped:Connect(function() local tackleTool = character:WaitForChild("Tackle") tackleTool:Destroy() end) end) end)