Problem with GUI

Hey, whenever more than two people join my game this weird full-screen GUI pops up. There is nothing wrong with my StarterGUIs, it must be either a infection or a glitch. Please help me if you can!

1 Like

is there a starter gui inserted

Remove it and create a new one.

did you read what i said? there is no startgui that causes the issue

is there a weird script like a virus. I once had one but I removed it before execution.

It may be a backdoor, try looking in the game for anything. You could also use this;
(Use a localscript)

game.Players.LocalPlayer.PlayerGui.ChildAdded:Connect(function(Obj)
    if Obj:IsA('ScreenGui') or Obj:IsA('Frame') or Obj:IsA('TextLabel') or Obj:IsA('TextButton') or Obj:IsA('TextBox') then
        wait(1)
        Obj:Destroy(print('Inserted object detected (INFO: '..Obj.Name..', '..Obj.Parent.Name..')'))
    end
end)
1 Like

Try searching Script in the search bar. It will show all the scripts you have ingame. Go through everything which looks weird, usually a backdoor script is named a space or some random characters.