Advertisement
OutregeousHD

Secret - Omar Only

Aug 23rd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. TUTORIAL : Insert a Script > Place the Script in "ServerScriptService" > copy this script and paste it in your script > YOU'RE DONE!
  2. -------------------------------------------------------------------------------------------------------------------------
  3. local id = 0000000 -- Gamepass ID
  4.  
  5. game:GetService("MarketplaceService").PromptGamePassPurchaseFinished:Connect(function(plr,ido,purchased)
  6. if purchased and ido == id then
  7. plr.Character.Humanoid.WalkSpeed = 00 -- amount of speed the player gets when he buy the gamepass
  8. end
  9. end)
  10. game.Players.PlayerAdded:Connect(function(plr)
  11. plr.CharacterAdded:Connect(function(char)
  12. if game:GetService("MarketplaceService"):UserOwnsGamePassAsync(game.Players[char.Name].UserId, id) then
  13. char.Humanoid.WalkSpeed = 00 -- amount of speed the player gets when he buy the gamepass
  14. end
  15. end)
  16. end)
  17. -------------------------------------------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement