of     1   

BrickBrother1
#227687843Saturday, November 18, 2017 11:02 PM GMT

local modulescript = require(game.ServerScriptService.CONFIG.Music) print(modulescript.mID) function isAuthenticated(player) -- checks to see if the player owns your pass return game:GetService("GamePassService"):PlayerHasPass(player, modulescript.mID) end script.Parent.MouseButton1Click:connect(function(plr) if isAuthenticated(plr) then print(plr.Name .. " has bought the game pass with id " .. modulescript.mID) else print("gamepass not owned!") end end) Gamepass is stored in the module script, nothing wrong with that it's just that I get an error saying, "Not a valid Player" How can I solve it?
BrickBrother1
#227689880Saturday, November 18, 2017 11:39 PM GMT

bump
BrickBrother1
#227690318Saturday, November 18, 2017 11:48 PM GMT

So can nobody solve this? ;(

    of     1