I'm trying to make an infinite capacity gamepass but it isn't working, nor in studio or the actual game.
here's my script:
local gamepassId = 10621202 local service = game:GetService("MarketplaceService") game.Players.PlayerAdded:Connect(function(player) if service:UserOwnsGamePassAsync(player.UserId, gamepassId) then player:WaitForChild("MaxBrainSize").Value = 9999999999999999999999 end end)
How did you fix it? I am trying to make one myself, but i have no knowledge on how too. No tutorials or anything talking about it. Mind explaining it a bit? Thanks.
You can disable the script that doesn't allow anything past the capacity if the person owns the gamepass.
local gamepassId = 10621202 local service = game:GetService("MarketplaceService") game.Players.PlayerAdded:Connect(function(player) if service:UserOwnsGamePassAsync(player.UserId, gamepassId) then --put the script disable here end end)