I am making a script that is supposed to kick a player if they are not an admin and they are using a tool with a specific name. However, it is not working and not even printing "Activated" when a new child is added. Please help! Script:
01 | local Admins = { "TheLastHabanero" , "jetmitenClone" , "CinnamonBunRoller" } |
02 | local BannedTools = { "Building Tools" , "BuildingTools" , "Delete" , "Copy" , "Fly" , "Noclip" } |
03 | game.Players.PlayerAdded:Connect( function (Player) |
04 | local Human = Player.Character:FindFirstChild( "Humanoid" ) |
05 | Human.Parent.ChildAdded:Connect( function (thing) |
06 | print ( "Activated" ) |
07 | local Admin = false |
08 | for i, player in pairs (Admins) do |
09 | if Player.Name = = player then |
10 | print ( "Player is admin!" ) |
11 | Admin = true |
12 | end |
13 | end |
14 | if Admin = = false then |
15 | print ( "Not an Admin..." ) |
Your script was running before the player actually loaded and you also forgot to write end for one of the if-statements
01 | local Admins = { "TheLastHabanero" , "jetmitenClone" , "CinnamonBunRoller" } |
02 | local BannedTools = { "Building Tools" , "BuildingTools" , "Delete" , "Copy" , "Fly" , "Noclip" } |
03 | game.Players.PlayerAdded:Connect( function (Player) |
04 | local char = Player.Character or Player.CharacterAdded:Wait() |
05 | local Human = char:FindFirstChild( "Humanoid" ) |
06 | Human.Parent.ChildAdded:Connect( function (thing) |
07 | print ( "Activated" ) |
08 | local Admin = false |
09 | for i, player in pairs (Admins) do |
10 | if Player.Name = = player then |
11 | print ( "Player is admin!" ) |
12 | Admin = true |
13 | end |
14 | end |
15 | if Admin = = false then |