Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Players = game:service("Players")
- Players.PlayerAdded:connect(function(player)
- player.Chatted:connect(function(msg)
- msg = msg:lower()
- if msg:sub(1,5) == "kill/" then
- -- do something
- end
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement