|
| 22 Apr 2016 02:46 PM |
My script isnt working does anyone have a Kick script?
I am a King :/ |
|
|
| Report Abuse |
|
|
|
| 22 Apr 2016 03:29 PM |
please be more specific
I cant tell what you mean by "Kick script"
This siggy is copyrighted © |
|
|
| Report Abuse |
|
|
|
| 22 Apr 2016 04:26 PM |
To kick players from a server
I am a King :/ |
|
|
| Report Abuse |
|
|
|
| 22 Apr 2016 04:26 PM |
like chat kick (admin) or just plain kick
-- 4 8 15 16 23 42 |
|
|
| Report Abuse |
|
|
| |
|
Silicti
|
  |
| Joined: 07 Nov 2012 |
| Total Posts: 8242 |
|
|
| 22 Apr 2016 10:29 PM |
He asked two questions, not a yes or no.
Reply what you need help with. |
|
|
| Report Abuse |
|
|
|
| 22 Apr 2016 10:45 PM |
Sure.
local Banned = {}
function isBanned(plr) for _,a in pairs(Banned) do if (plr.Name:lower() == a:lower()) then return true end end end
game.Players.PlayerAdded:connect(function(plr) if isBanned(plr) then plr:Kick("You are banned from this game.") end end) |
|
|
| Report Abuse |
|
|