of     1   

Sallomy
#228425635Monday, December 04, 2017 2:27 PM GMT

Im Trying To Make Unlimited Money Gamepass I Have Been Searching For this For A Long Time Any Scripts that could give me a script for the unlimited Money Gamepass? Please! It Means Alot
Sallomy
#228425662Monday, December 04, 2017 2:28 PM GMT

i mean like every time you join the game you get 999k money
AsharKYT
#228425820Monday, December 04, 2017 2:37 PM GMT

so make a gamepass then when ever the player joins (using the playeradded function in a script) check if they have the gamepass. if they do then just add what ever value you want into how ever your using the money system (example: leaderboards or/and a cash value inside the player, etc)
AsharKYT
#228425901Monday, December 04, 2017 2:41 PM GMT

local MPS = game:GetService("MarketPlaceService") local ID = 0 -- change this to your gamepass ID game:GetService("Players").PlayerAdded:Connect(function(Player) if GPS:PlayerHasPass(Player, ID) -- make the code to add the money to how ever your money system works then end)
AsharKYT
#228425959Monday, December 04, 2017 2:44 PM GMT

-- I messed the top code up. this is the correct code: local GPS = game:GetService("GamePassService") local ID = 0 -- change this to your gamepass ID game:GetService("Players").PlayerAdded:Connect(function(Player) if GPS:PlayerHasPass(Player, ID) -- make the code to add the money to how ever your money system works then end)
Sallomy
#228426616Monday, December 04, 2017 3:16 PM GMT

Ty :P
sjr04
#228426700Monday, December 04, 2017 3:20 PM GMT

@ash i am going to do that but how would i make it clone to players backpack? is this correct? key:Clone().Parent = game.Players.LocalPlayer.Backpack key:Clone().Parent = game.Players.LocalPlayer.StarterGear end) local GPS = game:GetService("GamePassService") local ID = 0 -- change this to your gamepass ID game:GetService("Players").PlayerAdded:Connect(function(Player) if GPS:PlayerHasPass(Player, ID) then key:Clone().Parent = game.Players.LocalPlayer.Backpack key:Clone().Parent = game.Players.LocalPlayer.StarterGear end end)
sjr04
#228426783Monday, December 04, 2017 3:24 PM GMT

top code is just what it is, bottom is how it would (possibly?) be
sjr04
#228426836Monday, December 04, 2017 3:27 PM GMT

oops “key:Clone()” was “key” already defined

    of     1