Random gamepass gui just came up

This is what I looked up.

Is the gui’s name “gamepass”? You have to search the explorer for the gui’s name.

I have no clue what the GUI’s name is, as I said the guis dont pop up in studio.

If you want I can send you the game link so you can see it yourself.

If it doesn’t show up in studio and it only shows up in a roblox game then you can still find it with the dev console, if you use this script to print the names of everything in their PlayerGui you will be able to see it in the dev console by pressing F9 then pressing “server” while in the dev console menu.

-- put in StarterGui
while true do
	wait(1)
	c = script.Parent:children()
	for i = 1, #c do
		print(c[i].Name)
	end
end

Searching also works for the ClassName, so look up “ScreenGui”

So I put this into dev console?

Put this in the StarterGui as a server script, then when you load into a roblox game you can view all the things in the playergui by using the dev console.

Like so?

go to find all/replace all under view in studio

after that, a window should pop up. type marketplaceservice to see every script that has that phrase in it. look through the scripts and delete them if you dont need them.
image

alternatively, you could search for “require” instead but it is not recommended. it might break some actually useful scripts in your models so i suggest deleting them one by one and seeing if it makes a difference
image

Yes, now go into a Roblox game then press F9, that will bring up the dev console in which you can view everything in the player’s playergui.

This is what came from that, LctDevBot is my alt tester accout for the game. (Not that that matters but just so you know my main is chrisfs123)

Did you press server once in the dev console?

Well that time I did not but I just did. So how do I delete something in dev console? I want to see if thats it.

So I did what you said. I pretty much removed all scripts that I did not need. But its still there.

go into testing mode and open startergui in the explorer, is there anything you dont recognise under there??

What the …

Why does your game have 18,000 scripts???

Nope nothing I dont recognise in startergui

disable all of your plugins and see if that works.