Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why isn't my anti exploit script isnt detecting ChildAdded?

Asked by 5 years ago

This question has been solved by the original poster.
01local reason
02game.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)
18end)

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!

1 answer

Log in to vote
0
Answered by 5 years ago

I figured it out, I made the script a LocalScript and put it into StarterPlayerScripts. I also changed the script to:

01local reason
02local plr = script.Parent.Parent
03    local function kick()
04        plr:Kick(reason)
05    end
06plr: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
16end)
Ad

Answer this question