I wanted to make a script that detects and kicks whoever has a exploit kit. No one dares to mess up my game! It was going very well. It works on computer but I realize, it doesn’t work on mobile. It was like a kicking machine, kicking all the mobile players left and right and until the servers is empty. I only know how to detect exploiters but not the mobile players. ![]()
local NumberOfGui = 4
game.Players.PlayerAdded:Connect(function(player)
wait(5)
if #player.PlayerGui:GetChildren() ~= NumberOfGui then
player:Kick("No Bad Extensions Allowed!")
end
end)