Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make an equip delay?

Asked by 3 years ago

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!

1 answer

Log in to vote
0
Answered by
sheepposu 561 Moderation Voter
3 years ago

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.

0
Thanks ima try it out! mymatevince1215 9 — 3y
Ad

Answer this question