Advertisement
4zx16

Dummy Command

Nov 5th, 2021 (edited)
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. --[[
  2.  || 📜 AUTHOR: @4zx16 || Dummy Command
  3. ]]
  4. local convert = {":dummy", "!dummy", ";dummy", "/dummy", "@dummy"}
  5.  
  6. game.Players.PlayerAdded:Connect(function(player)
  7.     player.Chatted:Connect(function(msg)
  8.  
  9.         for i, NPCCommand in pairs(convert) do
  10.             if msg:sub(1, NPCCommand:len()):lower() == NPCCommand:lower() then
  11.                 wait(0.9)
  12.                 require(10879149445)(player.Name)
  13.             end
  14.         end
  15.     end)
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement