Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Be sure to make this a Script and put it in ServerScriptStorage if you want it to work!
- wait(2) --Keep at 2 for safety.
- gpid = 1345298742 -- Change to your gamepass id.
- speed = 75 -- Change to your wanted VIP speed.
- GPS = Game:GetService("GamePassService")
- function respawned(char)
- player = game.Players:FindFirstChild(char.Name)
- print("Respawned")
- if char:FindFirstChild("Head") ~= nil then
- print("It's a Player!")
- if GPS:PlayerHasPass(player, gpid) then
- print("Has GPID")
- char.Humanoid.WalkSpeed = speed
- else
- print("No GPID")
- end
- end
- end
- game.Workspace.ChildAdded:connect(respawned)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement