Advertisement
NostaIgia

roblox admin template

Jan 7th, 2021
1,140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. local Players = game:service("Players")
  2.  
  3. Players.PlayerAdded:connect(function(player)
  4.     player.Chatted:connect(function(msg)
  5.         msg = msg:lower()
  6.         if msg:sub(1,5) == "kill/" then
  7.             -- do something
  8.         end
  9.     end)
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement