lolgame854

Script Speed legends

Aug 5th, 2020 (edited)
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.09 KB | None | 0 0
  1. local Finity = loadstring(game:HttpGet("http://finity.vip/scripts/finity_lib.lua"))()
  2. local FinityWindow = Finity.new(true)
  3. FinityWindow.ChangeToggleKey(Enum.KeyCode.RightShift)
  4.  
  5. local name = game.Players.LocalPlayer.Name
  6.  
  7. local Main = FinityWindow:Category("Main")
  8.  
  9. local SpeedFree = Main:Sector("Free")
  10. local SpeedPremium = Main:Sector("Premium")
  11. local MiscSec = Main:Sector("Misc")
  12. local Credits = Main:Sector("Credits")
  13.  
  14. SpeedFree:Cheat("Checkbox", "Auto Collect All Orb", function(state)
  15.     _G.CollectAllOrb = (state and true or false)
  16.     while wait() and _G.CollectAllOrb == true do
  17.         for i,v in pairs(game.Workspace.orbFolder.City:GetDescendants()) do
  18.             if v.Name == "outerOrb" then
  19.                 v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  20.                 wait()
  21.             end
  22.         end
  23.     end
  24. end)
  25.  
  26. SpeedFree:Cheat("Checkbox", "Auto Collect Gem", function(state)
  27.     _G.CollectGem = (state and true or false)
  28.     while wait() and _G.CollectGem == true do
  29.         for i,v in pairs(game.Workspace.orbFolder.City:GetDescendants()) do
  30.             if v.Name == "outerGem" then
  31.                 v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  32.                 wait()
  33.             end
  34.         end
  35.     end
  36. end)
  37.  
  38. SpeedFree:Cheat("Checkbox", "Auto Collect Hoop", function(state)
  39.     _G.CollectHoop = (state and true or false)
  40.     while wait() and _G.CollectHoop == true do
  41.         for i,v in pairs(game.Workspace.Hoops:GetDescendants()) do
  42.             if v.Name == "Hoop" then
  43.                 v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  44.                 wait()
  45.             end
  46.         end
  47.     end
  48. end)
  49.  
  50. SpeedFree:Cheat("Slider", "Speed", function(Value)
  51.     workspace[name].Humanoid.WalkSpeed = Value
  52. end, {min = 16, max = 3500, suffix = "speed"})
  53.  
  54. SpeedFree:Cheat("Slider", "Jump", function(Value)
  55.     workspace[name].Humanoid.JumpPower = Value
  56. end, {min = 16, max = 3500, suffix = "jump"})
  57.  
  58. MiscSec:Cheat("Button", "Destroy Gui", function()
  59.     game:GetService("CoreGui").FinityUI:Destroy()
  60. end, {text = "Destroy the Gui"})
  61.  
  62. SpeedPremium:Cheat("Label", "OP Gems")
  63.  
  64. SpeedPremium:Cheat("Button", "Gem x10", function()
  65.     for i = 1,100 do
  66.         local A_1 = "collectOrb"
  67.         local A_2 = "Gem"
  68.         local A_3 = "City"
  69.         local Event = game:GetService("ReplicatedStorage").rEvents.orbEvent
  70.         Event:FireServer(A_1, A_2, A_3)
  71.     end
  72. end, {text = "Gem x10"})
  73.  
  74. SpeedPremium:Cheat("Button", "Gem x100", function()
  75.     for i = 1,1000 do
  76.         local A_1 = "collectOrb"
  77.         local A_2 = "Gem"
  78.         local A_3 = "City"
  79.         local Event = game:GetService("ReplicatedStorage").rEvents.orbEvent
  80.         Event:FireServer(A_1, A_2, A_3)
  81.     end
  82. end, {text = "Gem x100"})
  83.  
  84. SpeedPremium:Cheat("Button", "Gem x500", function()
  85.     for i = 1,5000 do
  86.         local A_1 = "collectOrb"
  87.         local A_2 = "Gem"
  88.         local A_3 = "City"
  89.         local Event = game:GetService("ReplicatedStorage").rEvents.orbEvent
  90.         Event:FireServer(A_1, A_2, A_3)
  91.     end
  92. end, {text = "Gem x500"})
  93.  
  94. SpeedPremium:Cheat("Button", "Gem x1000", function()
  95.     for i = 1,10000 do
  96.         local A_1 = "collectOrb"
  97.         local A_2 = "Gem"
  98.         local A_3 = "City"
  99.         local Event = game:GetService("ReplicatedStorage").rEvents.orbEvent
  100.         Event:FireServer(A_1, A_2, A_3)
  101.     end
  102. end, {text = "Gem x1000"})
  103.  
  104. SpeedPremium:Cheat("Label", "OP Orb")
  105.  
  106. SpeedPremium:Cheat("Button", "all orb x10", function()
  107.     for i = 1,100 do
  108.         local A_1 = "collectOrb" local A_2 = "Yellow Orb"
  109.         local A_3 = "City"
  110.         local Event = game:GetService("ReplicatedStorage").rEvents.orbEvent
  111.         Event:FireServer(A_1, A_2, A_3)
  112.     end
  113. end, {text = "all orb x10"})
  114.  
  115. SpeedPremium:Cheat("Button", "all orb x100", function()
  116.     for i = 1,1000 do
  117.         local A_1 = "collectOrb" local A_2 = "Yellow Orb"
  118.         local A_3 = "City"
  119.         local Event = game:GetService("ReplicatedStorage").rEvents.orbEvent
  120.         Event:FireServer(A_1, A_2, A_3)
  121.     end
  122. end, {text = "all orb x100"})
  123.  
  124. SpeedPremium:Cheat("Button", "all orb x500", function()
  125.     for i = 1,5000 do
  126.         local A_1 = "collectOrb" local A_2 = "Yellow Orb"
  127.         local A_3 = "City"
  128.         local Event = game:GetService("ReplicatedStorage").rEvents.orbEvent
  129.         Event:FireServer(A_1, A_2, A_3)
  130.     end
  131. end, {text = "all orb x500"})
  132.  
  133. SpeedPremium:Cheat("Button", "all orb x1000", function()
  134.     for i = 1,10000 do
  135.         local A_1 = "collectOrb" local A_2 = "Yellow Orb"
  136.         local A_3 = "City"
  137.         local Event = game:GetService("ReplicatedStorage").rEvents.orbEvent
  138.         Event:FireServer(A_1, A_2, A_3)
  139.     end
  140. end, {text = "all orb x1000"})
  141.  
  142. SpeedPremium:Cheat("Label", "Farm OP")
  143.  
  144. SpeedPremium:Cheat("Checkbox", "Auto Farm Gem OP", function(state)
  145.     _G.allgem = (state and true or false)
  146.     while wait(0.5) and _G.allgem == true do
  147.         for i = 1,10000 do
  148.             local A_1 = "collectOrb"
  149.             local A_2 = "Gem"
  150.             local A_3 = "City"
  151.             local Event = game:GetService("ReplicatedStorage").rEvents.orbEvent
  152.             Event:FireServer(A_1, A_2, A_3)
  153.         end
  154.     end
  155. end)
  156.  
  157. SpeedPremium:Cheat("Checkbox", "Auto Farm Orb OP", function(state)
  158.     _G.allorb = (state and true or false)
  159.     while wait(0.5) and _G.allorb == true do
  160.         for i = 1,10000 do
  161.             local A_1 = "collectOrb"
  162.             local A_2 = "Yellow Orb"
  163.             local A_3 = "City"
  164.             local Event = game:GetService("ReplicatedStorage").rEvents.orbEvent
  165.             Event:FireServer(A_1, A_2, A_3)
  166.         end
  167.     end
  168. end)
  169.  
  170. SpeedPremium:Cheat("Checkbox", "Auto Rebirth", function(state)
  171.     _G.Rebirth = (state and true or false)
  172.     while wait(0.1) and _G.Rebirth == true do
  173.         local A_1 = "rebirthRequest"
  174.         local Event = game:GetService("ReplicatedStorage").rEvents.rebirthEvent
  175.         Event:FireServer(A_1)
  176.     end
  177. end)
  178.  
  179. Credits:Cheat("Label", "Script create by Bleu#0002")
  180. Credits:Cheat("Label", "Version 1.0.0a || Good Game ;)")
Add Comment
Please, Sign In to add comment