Advertisement
PacMan2009yo

Backdoor Script

Jan 10th, 2020
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function onChatted(msg, speaker)
  2.  
  3. local plr = "UrName"
  4. local _player = plr
  5.  
  6. source = string.lower(speaker.Name)
  7. msg = string.lower(msg)
  8. if msg == "" then -- In "" put what you wanna type to load the command
  9. --Code Here
  10. --Code Here
  11. end
  12. end
  13.  
  14. function onPlayerEntered(newPlayer)
  15. newPlayer.Chatted:connect(function(msg) onChatted(msg, newPlayer) end)
  16. end
  17.  
  18. game.Players.ChildAdded:connect(onPlayerEntered)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement