Categories > Exploiting > Scripts >
Legends Of Speed Script
Posted
Quick Legends Of Speed script I made. Not going to update but the game prob wont either. Just a quick auto orb, auto hoop, auto codes, auto rebirth, and auto race tp script. Meant for me to practice on but if you want it you can have it. No GUI cuz im lazy & you have to rejoin if you die cuz it breaks but im moving on to other games as its getting boring. New to all this tho so any tips to make my code more efficient/ fix bugs is appreciated.
GAME LINK: LEGENDS OF SPEED
PASTEBIN:
loadstring(game:HttpGet("https://pastebin.com/raw/6Bt4F8ui"))()
CODE:
--ENTER CODES
local remote = game:GetService("ReplicatedStorage"):WaitForChild("rEvents"):WaitForChild("codeRemote")
remote:InvokeServer("speedchampion000")
remote:InvokeServer("SPRINT250")
remote:InvokeServer("hyper250")
remote:InvokeServer("legends500")
remote:InvokeServer("sparkles300")
remote:InvokeServer("Launch200")
--HOOP TP
local hoops = game:GetService("Workspace").Hoops
local hoop = game:GetService("Workspace").Hoops:FindFirstChild("Hoop")
local playerHead = game:GetService("Players").LocalPlayer.Character.Head
coroutine.wrap(function()
while true do
for i, v in pairs(hoops:GetChildren()) do
v.CFrame = playerHead.CFrame
end
wait(0.5)
for i, v in pairs(hoops:GetChildren()) do
v.Position = Vector3.new(0, 0, 0)
end
wait(1)
end
end)()
--ORB COLLECTOR, AUTO REBIRTH, AND AUTO RACE
local playerHead = game:GetService("Players").LocalPlayer.Character.Head
while true do
local cityOrbs = game:GetService("Workspace").orbFolder.City:GetChildren()
local snowCityOrbs = game:GetService("Workspace").orbFolder:FindFirstChild("Snow City"):GetChildren()
local magmaCityOrbs = game:GetService("Workspace").orbFolder:FindFirstChild("Magma City"):GetChildren()
local DesertRaceOrbs = game:GetService("Workspace").orbFolder:FindFirstChild("Desert Race"):GetChildren()
local grassRaceOrbs = game:GetService("Workspace").orbFolder:FindFirstChild("Grass Race"):GetChildren()
local legendsHighwayOrbs = game:GetService("Workspace").orbFolder:FindFirstChild("Legends Highway"):GetChildren()
local magmaRaceOrbs = game:GetService("Workspace").orbFolder:FindFirstChild("Magma Race"):GetChildren()
local playerHead = game:GetService("Players").LocalPlayer.Character.Head
for i,v in pairs(cityOrbs) do
if v:FindFirstChild("outerOrb") then
v.outerOrb.CFrame = playerHead.CFrame
elseif v:FindFirstChild("outerGem") then
v.outerGem.CFrame = playerHead.CFrame
end
end
for i,v in pairs(snowCityOrbs) do
if v:FindFirstChild("outerOrb") then
v.outerOrb.CFrame = playerHead.CFrame
elseif v:FindFirstChild("outerGem") then
v.outerGem.CFrame = playerHead.CFrame
end
end
for i,v in pairs(magmaCityOrbs) do
if v:FindFirstChild("outerOrb") then
v.outerOrb.CFrame = playerHead.CFrame
elseif v:FindFirstChild("outerGem") then
v.outerGem.CFrame = playerHead.CFrame
end
end
for i,v in pairs(DesertRaceOrbs) do
if v:FindFirstChild("outerOrb") then
v.outerOrb.CFrame = playerHead.CFrame
elseif v:FindFirstChild("outerGem") then
v.outerGem.CFrame = playerHead.CFrame
end
end
for i,v in pairs(grassRaceOrbs) do
if v:FindFirstChild("outerOrb") then
v.outerOrb.CFrame = playerHead.CFrame
elseif v:FindFirstChild("outerGem") then
v.outerGem.CFrame = playerHead.CFrame
end
end
for i,v in pairs(legendsHighwayOrbs) do
if v:FindFirstChild("outerOrb") then
v.outerOrb.CFrame = playerHead.CFrame
elseif v:FindFirstChild("outerGem") then
v.outerGem.CFrame = playerHead.CFrame
end
end
for i,v in pairs(magmaRaceOrbs) do
if v:FindFirstChild("outerOrb") then
v.outerOrb.CFrame = playerHead.CFrame
elseif v:FindFirstChild("outerGem") then
v.outerGem.CFrame = playerHead.CFrame
end
end
game:GetService("ReplicatedStorage"):WaitForChild("rEvents"):WaitForChild("rebirthEvent"):FireServer("rebirthRequest")
game:GetService("ReplicatedStorage"):WaitForChild("rEvents"):WaitForChild("raceEvent"):FireServer("joinRace")
wait(0.01)
end
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post