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

Script that kicks players with boots not working?

Asked by
haba_nero 386 Moderation Voter
5 years ago

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:

01local Admins = {"TheLastHabanero","jetmitenClone","CinnamonBunRoller"}
02local BannedTools = {"Building Tools","BuildingTools","Delete","Copy","Fly","Noclip"}
03game.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...")
View all 22 lines...

1 answer

Log in to vote
1
Answered by
synkrio 281 Moderation Voter
5 years ago

Your script was running before the player actually loaded and you also forgot to write end for one of the if-statements

01local Admins = {"TheLastHabanero","jetmitenClone","CinnamonBunRoller"}
02local BannedTools = {"Building Tools","BuildingTools","Delete","Copy","Fly","Noclip"}
03game.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
View all 24 lines...
0
Thanks! Ill see if it works. haba_nero 386 — 5y
0
If it works, Ill accept your answer haba_nero 386 — 5y
0
If it works, Ill accept your answer haba_nero 386 — 5y
Ad

Answer this question