Advertisement
Honansik

Legend Of Korra Script [SIMPLE AUTO LEVEL]

Dec 7th, 2021
1,205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.80 KB | None | 0 0
  1. _G.level = true;
  2. spawn(function()
  3.    while _G.level and wait() do
  4.        for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  5.            if v:IsA("Tool") then
  6.                if v.Name ~= "Glider" then
  7.                    game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  8.                    v:Activate()
  9.                end
  10.            end
  11.        end
  12.    end
  13. end)
  14.  
  15. _G.af = true;
  16. spawn(function()
  17.    while _G.af and wait() do
  18.        for i,v in pairs(workspace:GetChildren()) do
  19.            if v.Name == "TrainDummy" then
  20.                if v.Box then
  21.                    v.Box.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.lookVector * 15
  22.                end
  23.            end
  24.        end
  25.    end
  26. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement