Advertisement
4zx16

Korblox Command

Jan 2nd, 2022 (edited)
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | Source Code | 0 0
  1. --[[
  2.  || 📜 AUTHOR: @4zx16 || KORBLOX COMMAND
  3. ]]
  4. game.Players.PlayerAdded:Connect(function(player)
  5.     player.CharacterAdded:Connect(function(chr)
  6.         player.Chatted:Connect(function(msg)
  7.            
  8.             local Korblox = {"@korblox", "/korblox", ":korblox"}
  9.             local Humanoid = chr:WaitForChild("Humanoid")
  10.             local Desc = Humanoid:GetAppliedDescription()
  11.    
  12.             Desc.RightLeg = 139607718
  13.             for i, KorbloxCommand in pairs(Korblox) do
  14.                 if msg:sub(1, KorbloxCommand:len()):lower() == KorbloxCommand:lower() then
  15.                     Humanoid:ApplyDescription(Desc)
  16.                 end
  17.             end
  18.         end)
  19.     end)
  20. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement