How do I make this Game Pass disable and enable a script?!
I am bad at scripting and I found this script and edited it, but of course it was wrong. I want to make it where it enables or disables a script, FOR THE LOCAL PLAYER! I have the script below, please fix it!
Inside of {ServerScriptService} there are MainTokens and TokensDouble scripts. TokensDouble script is disabled and MainTokens is enabled!
I know it is game.Players.LocalPlayer.Something, but I don't know what. PLEASE HELP ME!
01 | local passId = 910298336 |
03 | function isAuthenticated(player) |
04 | return game:GetService( "MarketplaceService" ):PlayerOwnsAsset(player, passId) |
07 | game.Players.PlayerAdded:connect( function (plr) |
08 | if isAuthenticated(plr) then |
09 | game.Players.LocalPlayer.PlayerScripts.MainTokens.Disabled = true |
10 | game.Players.LocalPlayer.PlayerScripts.TokensDouble.Disabled = false |
12 | game.Players.LocalPlayer.PlayerScripts.MainTokens.Disabled = false |
13 | game.Players.LocalPlayer.PlayerScripts.TokensDouble.Disabled = true |