Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- WARNING: Be sure to make this a Script and place it in Workspace if you want it to work!
- local speed = 50
- function respawnc(char)
- h = char:findFirstChild("Humanoid")
- if h ~= nil then
- h.WalkSpeed = speed
- end
- end
- function onPlayerEntered(newplayer)
- newplayer.CharacterAdded:connect(respawnc)
- end
- game.Players.PlayerAdded:connect(onPlayerEntered)
Advertisement
Add Comment
Please, Sign In to add comment