01 | local reason |
02 | game.Players.ChildAdded:Connect( function (plr) |
03 | local function kick() |
04 | plr:Kick(reason) |
05 | end |
06 | plr:WaitForChild( "PlayerGui" ).ChildAdded:Connect( function (child) |
07 | if child:IsA( "ScreenGui" ) then |
08 | if child.Name = = "BubbleChat" or child.Name = = "Chat" or child.Name = = "Freecam" then |
09 | print ( 'loaded' ) |
10 | else |
11 | local reason = 'Executing a ScreenGUI' |
12 | print (reason) |
13 | kick() |
14 | end |
15 |
16 | end |
17 | end ) |
18 | end ) |
So, whenever I join the game, the first thing I see in the output is "loaded" because I made it print loaded whenever a child with the name "BubbleChat", "Chat", or "Freecam" is added into PlayerGui.
But. whenever I go into Explorer (in-game) and insert a new ScreenGui into my PlayerGui, it is supposed to kick the player and print the reason, "Executing a ScreenGUI". But unfortunately, it doesn't do that.
I really do not know what the error is here. There is no error in the output. Help is greatly appreciated!
I figured it out, I made the script a LocalScript and put it into StarterPlayerScripts. I also changed the script to:
01 | local reason |
02 | local plr = script.Parent.Parent |
03 | local function kick() |
04 | plr:Kick(reason) |
05 | end |
06 | plr:WaitForChild( "PlayerGui" ).ChildAdded:Connect( function (child) |
07 | if child:IsA( "ScreenGui" ) then |
08 | if child.Name = = "BubbleChat" or child.Name = = "Chat" or child.Name = = "Freecam" then |
09 | print ( 'loaded' ) |
10 | else |
11 | local reason = 'Executing a ScreenGUI' |
12 | print (reason) |
13 | kick() |
14 | end |
15 | end |
16 | end ) |