Funcional
+1 Car Evolution

Código do script
Lua
local WindUI = loadstring(game:HttpGet("https://github.com/Footagesus/WindUI/releases/latest/download/main.lua"))()
local Window = WindUI:CreateWindow({
Title = "+1 Car Evolution",
Icon = "map-pinned",
Author = "AspectTiber",
Folder = "Wintp",
Size = UDim2.fromOffset(580, 460),
Transparent = true,
Theme = "Dark"
})
local MainTab = Window:Tab({
Title = "Main",
Icon = "home"
})
local AutoTp = false
MainTab:Toggle({
Title = "Auto Teleport Wins (slow)",
Desc = "Teleports to the best wins to gain wins",
Value = false,
Callback = function(state)
AutoTp = state
if state then
task.spawn(function()
local player = game.Players.LocalPlayer
while AutoTp do
local character = player.Character or player.CharacterAdded:Wait()
local hrp = character:WaitForChild("HumanoidRootPart")
local folder = workspace:WaitForChild("Wins")
for _, obj in ipairs(folder:GetChildren()) do
if not AutoTp then break end
if obj.Name == "WinGiver2x" then
continue
end
if obj:FindFirstChild("Trophy") then
continue
end
local part
if obj:IsA("BasePart") then
if obj.BrickColor == BrickColor.new("New Yeller") then
part = obj
end
elseif obj:IsA("Model") then
for _, v in ipairs(obj:GetChildren()) do
if v:IsA("BasePart") and v.BrickColor == BrickColor.new("New Yeller") then
part = v
break
end
end
end
if part then
hrp.CFrame = CFrame.new(part.Position + Vector3.new(0, 8, 0))
task.wait(1.3)
end
end
task.wait(1)
end
end)
end
end
})
local winsFolder = workspace:WaitForChild("Wins")
for _, obj in ipairs(winsFolder:GetDescendants()) do
if obj.Name == "Trophy" then
obj:Destroy()
end
end
MainTab:Toggle({
Title = " Auto Teleprot Best Win",
Desc = "Teleports you to the best wingiver over and over",
Locked = false,
Callback = function(state)
autobesttp = state
while autobesttp do
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local hrp = character:WaitForChild("HumanoidRootPart")
local targetPart = workspace.Wins:GetChildren()[31].Part
hrp.CFrame = CFrame.new(targetPart.Position + Vector3.new(0, 3, 0))
task.wait(0.2)
end
end
})
MainTab:Toggle({
Title = "Auto Teleport Coins",
Desc = "Teleports Coins across the map",
Value = false,
Callback = function(state)
AutoTpCoin = state
if state then
task.spawn(function()
local player = game.Players.LocalPlayer
while AutoTpCoin do
local character = player.Character or player.CharacterAdded:Wait()
local hrp = character:WaitForChild("HumanoidRootPart")
local folder = workspace:WaitForChild("Coins")
for _, obj in ipairs(folder:GetChildren()) do
if not AutoTpCoin then break end
if not obj.CanTouch then
continue
end
local coin
if obj:IsA("BasePart") then
coin = obj
elseif obj:IsA("Model") then
coin = obj.PrimaryPart or obj:FindFirstChildWhichIsA("BasePart")
end
if coin then
hrp.CFrame = CFrame.new(coin.Position + Vector3.new(0, 5, 0))
task.wait(0.3)
end
end
task.wait(1)
end
end)
end
end
})
MainTab:Button({
Title = "Unlock All Shortcuts",
Desc = "Unlocks All shortcut walls",
Locked = false,
Callback = function()
local folderdel = workspace:WaitForChild("Shortcuts")
for _, obj in ipairs(folderdel:GetChildren()) do
obj:Destroy()
end
end
})
MainTab:Button({
Title = "Teleport Best Win",
Desc = "Teleports you to the best wingiver",
Locked = false,
Callback = function()
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local hrp = character:WaitForChild("HumanoidRootPart")
local targetPart = workspace.Wins:GetChildren()[31].Part
hrp.CFrame = CFrame.new(targetPart.Position + Vector3.new(0, 3, 0))
end
})
Descrição
A great script for +1 Car Evolution that has multiple features like auto wins, auto best win, auto coin, unlock all shortcuts, Teleport best win.
Comentários (0)
Entre para participar da conversa
- Seja o primeiro a comentar.
Perguntas frequentes
- Como uso o script +1 Car Evolution?
- Copie o código acima, abra seu executor de Roblox, cole o código e pressione executar enquanto estiver no jogo. As funcionalidades são ativadas instantaneamente assim que o script é executado.
- O script +1 Car Evolution é gratuito?
- Sim. Este script é gratuito para copiar e usar. Se ele usa um sistema de chaves, siga o link "Obter chave" para desbloqueá-lo sem custo.
- É seguro usar o script +1 Car Evolution?
- O código-fonte completo é exibido nesta página para que você possa ler exatamente o que ele faz antes de executá-lo. Sempre use um executor confiável, e lembre-se de que usar scripts é contra os termos de serviço do Roblox — use por sua conta e risco.
- Qual executor funciona com +1 Car Evolution?
- Este script funciona com a maioria dos executores populares do Roblox. Consulte nossa página de executores para encontrar um executor gratuito ou pago confiável para seu dispositivo.