plane445
|
  |
| Joined: 25 Nov 2012 |
| Total Posts: 105 |
|
|
| 18 Dec 2015 09:14 PM |
I have been through 8 different admin scripts and none of them work right.
Can someone give me the link to an admin script that works? Thanks. I would appreciate one that has the fly tool, I know that yes the roblox update broke a lot of them, but could someone find me one?
Thanks in advance. |
|
|
| Report Abuse |
|
|
|
| 18 Dec 2015 09:20 PM |
game.Players.PlayerAdded:connect(function(plr) plr.Chatted:connect(function(msg) if string.lower(msg) == 'kick' the local player = string.sub(msg,4) for a,b in pairs(game.Players:GetPlayers())do if string.find(string.lower(b.Name),player)then b:Kick('Admin kicked your butt out, now stay out.') end end end end end |
|
|
| Report Abuse |
|
|
|
| 18 Dec 2015 09:21 PM |
Lol tired typo
game.Players.PlayerAdded:connect(function(plr) plr.Chatted:connect(function(msg) if string.lower(msg) == 'kick' the local player = string.sub(msg,5) for a,b in pairs(game.Players:GetPlayers())do if string.find(string.lower(b.Name),player)then b:Kick('Admin kicked your butt out, now stay out.') end end end end end |
|
|
| Report Abuse |
|
|