Advertisement
AtlasLoader

Untitled

Aug 18th, 2023
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.51 KB | Gaming | 0 0
  1. local lib = loadstring(game:HttpGet"https://raw.githubusercontent.com/dawid-scripts/UI-Libs/main/discord%20lib.txt")()
  2.  
  3. local win = lib:Window("Atlas Loader")
  4. local serv = win:Server("Atlas Loader", "Shit Ass game")
  5.  
  6. local cTab = serv:Channel("Character")
  7. local autoTab = serv:Channel("AutoFarm")
  8.  
  9. local flySpeed = 3
  10. local flying = false
  11. local ws = 16
  12. local js = 50
  13.  
  14. local autofarm = false
  15.  
  16. cTab:Slider("Walkspeed", 0,150,1, function(t)
  17. ws = t
  18. end)
  19.  
  20. cTab:Slider("Jump Power", 0,150,1, function(t)
  21. jp = t
  22. end)
  23.  
  24. cTab:Label("FLY CONTROLS : R-Up, F-Down, WASD")
  25.  
  26. cTab:Bind("Fly", Enum.KeyCode.B, function()
  27. flying = not flying
  28. if flying then
  29. game.Workspace.Gravity = 0
  30. else
  31. game.Workspace.Gravity = 196.19999694824
  32. end
  33. end)
  34.  
  35. cTab:Slider("Fly Speed", 0,10,0.1, function(t)
  36. flySpeed = t
  37. end)
  38.  
  39. autoTab:Toggle("AutoFarm", false, function(t)
  40. autofarm = t
  41. if autofarm then
  42. game.Workspace.Gravity = 0
  43. else
  44. game.Workspace.Gravity = 196.19999694824
  45. end
  46. end)
  47.  
  48. coroutine.resume(coroutine.create(function()
  49. while wait(0.1) do
  50. while autofarm do
  51. wait(0.1)
  52. pcall(function()
  53. local tween = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(12,Enum.EasingStyle.Linear), {CFrame = CFrame.new(-524.751,49,133.146)}):Play()
  54. wait(12.5)
  55. fireclickdetector(game:GetService("Workspace").Islands.Bank.EssentialWorkers.GoldBars.Bar.Clicker)
  56. wait(2)
  57. fireclickdetector(game:GetService("Workspace").Islands.Bank.EssentialWorkers.GoldBars.Bar.Clicker)
  58. wait(2)
  59. fireclickdetector(game:GetService("Workspace").Islands.Bank.EssentialWorkers.GoldBars.Bar.Clicker)
  60. wait(0.25)
  61. fireclickdetector(game:GetService("Workspace").Islands.Bank.EssentialWorkers.GoldBars.Bar.Clicker)
  62. wait(0.25)
  63. fireclickdetector(game:GetService("Workspace").Islands.Bank.EssentialWorkers.GoldBars.Bar.Clicker)
  64. wait(0.75)
  65. local tween1 = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(12,Enum.EasingStyle.Linear), {CFrame = CFrame.new(270.048, 47.608, -5492.269)}):Play()
  66. wait(14.5)
  67. end)
  68. end
  69. end
  70. end))
  71.  
  72. coroutine.resume(coroutine.create(function()
  73. while wait(0.01) do
  74. while flying do
  75. pcall(function()
  76. local charV = game.Players.LocalPlayer.Character
  77. charV.HumanoidRootPart.Velocity = Vector3.new(0,0,0)
  78.  
  79. if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.W) then
  80. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-flySpeed)
  81. end;
  82. if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.A) then
  83. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(-flySpeed,0,0)
  84. end;
  85. if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.S) then
  86. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,flySpeed)
  87. end;
  88. if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.D) then
  89. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(flySpeed,0,0)
  90. end;
  91. if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.R) then
  92. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,flySpeed/1.5,0)
  93. end;
  94. if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.F) then
  95. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,-flySpeed/1.5,0)
  96. end;
  97. end)
  98. task.wait()
  99. end
  100. end
  101. end))
  102.  
  103. while true do
  104. wait(0.1)
  105. pcall(function()
  106. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  107. humanoid.WalkSpeed = ws
  108. humanoid.JumpPower = jp
  109. end)
  110. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement