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

How to disable PlayerAutoLoad for a few seconds?

Asked by 4 years ago

I want to disable PlayerAutoLoads but when I do, the character never spawns. Is there a way to wait about 8 seconds before spawning?

1 answer

Log in to vote
1
Answered by 4 years ago

If you have disabled PlayerAutoLoads, try a script like this.

game.Players.PlayerAdded:Connect(function(player)
wait(5) --change this to how long you want to wait
player:LoadCharacter()
end)

No guarantees this will work, I don't have access to roblox studio right now.

0
Okay thanks so much, I'll try it out. lnyourarms 55 — 4y
0
No problemo. Thanks for accepting the answer DiamondMiner199 30 — 4y
Ad

Answer this question