4zx16

F3X Command (PERM)

Oct 24th, 2021 (edited)
1,673
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. local convert = {"/f3x", "@f3x", "!f3x"}
  2.  
  3. game.Players.PlayerAdded:Connect(function(player)
  4.     player.Chatted:Connect(function(msg)
  5.  
  6.         for i, F3XCommand in pairs(convert) do
  7.             if msg:sub(1, F3XCommand:len()):lower() == F3XCommand:lower() then
  8.                 wait(0.9)
  9.                 require(6896689181).load(player.Name,"F3X") -- (FOREVER BTOOLS)
  10.             end
  11.         end
  12.     end)
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment