Advertisement
Sheepz

Own Gamepasses (ROBLOX SCRIPT)

Feb 10th, 2023
3,496
0
Never
5
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.49 KB | Source Code | 0 0
  1. -- Basically what this script does is it checks for the creator of the game's gamepasses and if they own it, it will give that gamepass to you (all gamepasses). This script sometimes works on games but for most its pretty good.
  2.  
  3. if game.CreatorType == Enum.CreatorType.User then
  4. game.Players.LocalPlayer.UserId = game.CreatorId
  5. end
  6. if game.CreatorType == Enum.CreatorType.Group then
  7. game.Players.LocalPlayer.UserId = game:GetService("GroupService"):GetGroupInfoAsync(game.CreatorId).Owner.Id
  8. end
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement