Attempt for index nil with player gui and player not being kicked?
I was making an admin panel and here is the code with 2 errors:
01 | script.Parent.BanButton.MouseButton 1 Click:Connect( function (player) |
03 | local playerGui = player.PlayerGui |
05 | local playerNameBox = script.Parent.PlayerNameBox |
06 | local banReasonBox = script.Parent.BanReasonBox |
08 | local playerToBan = game.Players:FindFirstChild(playerNameBox.Text) |
10 | playerToBan.Banned.Value = true |
12 | playerToBan.Banned.BanReason.Value = banReasonBox.Text |
14 | if playerNameBox.Text = = "Name" then |
15 | playerGui.BanPanel.MainFrame.BanButton.Text = "Please enter a player to ban" |
16 | elseif banReasonBox.Text = = "Reason" then |
17 | playerGui.BanPanel.MainFrame.BanButton.Text = "Please enter a reason" |
19 | playerToBan:Kick(banReasonBox.Text) |
The first error is on line 15 and 17. "Attempt to index nil with 'PlayerGui'"
Another error I got before I added was with the kick part. It is supposed to kick the player in the banReasonBox. Note: This is a local script
What is the problem? Thanks!