작동 중Farming
+1 Car Evolution

스크립트 코드
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
})
설명
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.
댓글 (0)
- 첫 댓글을 작성하세요.
자주 묻는 질문
- +1 Car Evolution 스크립트는 어떻게 사용하나요?
- 위의 스크립트 코드를 복사하고 Roblox에서 +1 Car Evolution에 접속한 뒤, 익스큐터에 붙여넣고 실행하세요. 스크립트가 실행되면 기능이 바로 활성화됩니다.
- +1 Car Evolution은(는) 아직 작동하나요?
- 네 — +1 Car Evolution은(는) 현재 작동 중으로 표시되어 있습니다(마지막 업데이트: 2026년 9월 8일). Roblox 업데이트 후 작동하지 않으면 새 버전을 기다려 주세요.
- +1 Car Evolution에 호환되는 엑시큐터는?
- 이 스크립트는 대부분의 인기 Roblox 엑시큐터에서 작동합니다. 기기에 맞는 신뢰할 수 있는 무료 또는 유료 엑시큐터를 찾으려면 엑시큐터 페이지를 확인하세요.