I've been working on an equip delay for 2 hours straight, and I'm stuck! I need help! I want to make an equip delay because of the auto clicker noclip glitch. (It kinda ruins the game). Help will be appreciated!
I would create a server script and put code like this:
local delay = 10 game.Players.PlayerAdded:Connect(function(plr) wait(delay) local weapon = game.ReplicatedStorage.Weapons.Weapon:Clone() weapon.Parent = plr.Backpack end)
I haven't tested it, but I think it'll work fine.