Please help me. I am not sure of what to do without a script for this.
Just try this:
1 | passId = 1337 -- Change to your gamepass |
2 | game.Players.PlayerAdded:connect( function (plr) |
3 | plr:WaitForDataReady() |
4 | if game:GetService( "GamePassService" ):PlayerOwnsPass(plr,passId) then |
5 | plr.PlayerGui.MyGui.MyFrame.Visible = true -- Change to your own hierarchy |
6 | else |
7 | print (plr.Name .. " does not have the pass." ) |
8 | end |
9 | end ) |
From a ServerScript in workspace, or ServerScriptService
Always try to look for a wiki page with your problem, before asking.