Advertisement
IndoHack010

2X SPEED SCRIPT (ROBLOX STUDIO)

Nov 9th, 2019
2,907
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. local id = 0
  2. game:GetService("MarketplaceService").PromptGamePassPurchaseFinished:Connect(function(plr,ido,purchased)
  3. if purchased and ido == id then
  4. plr.Character.Humanoid.WalkSpeed = 30
  5. end
  6. end)
  7. game.Players.PlayerAdded:Connect(function(plr)
  8. plr.CharacterAdded:connect(function(char)
  9. if game:GetService("MarketplaceService"):UserOwnsGamePassAsync(game.Players[char.Name].UserId, id) then
  10. char.Humanoid.WalkSpeed = 25
  11. end
  12. end)
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement