Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Version: 2.82
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local TextLabel_2 = Instance.new("TextLabel")
- local TextLabel_3 = Instance.new("TextLabel")
- local TextLabel_4 = Instance.new("TextLabel")
- local TextButton = Instance.new("TextButton")
- local TextLabel_5 = Instance.new("TextLabel")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.new(0.403922, 0.403922, 0.403922)
- Frame.BorderSizePixel = 0
- Frame.Position = UDim2.new(0.186503068, 3, 0.225328952, 1)
- Frame.Size = UDim2.new(0, 505, 0, 297)
- Frame.Style = Enum.FrameStyle.DropShadow
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 9
- TextLabel.BorderSizePixel = 0
- TextLabel.Position = UDim2.new(0.00556799769, 0, -0.00864991546, 0)
- TextLabel.Size = UDim2.new(0, 275, 0, 50)
- TextLabel.Font = Enum.Font.Fantasy
- TextLabel.Text = "Vehicle Simulator GUI"
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14
- TextLabel.TextWrapped = true
- TextLabel_2.Parent = Frame
- TextLabel_2.BackgroundColor3 = Color3.new(0, 0, 0)
- TextLabel_2.BorderColor3 = Color3.new(0.0352941, 0.968628, 0.113725)
- TextLabel_2.BorderSizePixel = 2
- TextLabel_2.Position = UDim2.new(-0.00975885615, 0, 0.16900681, 0)
- TextLabel_2.Size = UDim2.new(0, 497, 0, 9)
- TextLabel_2.Font = Enum.Font.SourceSans
- TextLabel_2.Text = " "
- TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
- TextLabel_2.TextSize = 14
- TextLabel_3.Parent = Frame
- TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel_3.BackgroundTransparency = 9
- TextLabel_3.Position = UDim2.new(0.00556903519, 0, 0.927559435, 0)
- TextLabel_3.Size = UDim2.new(0, 142, 0, 16)
- TextLabel_3.Font = Enum.Font.SourceSans
- TextLabel_3.Text = "Made by MaiLeane on YouTube"
- TextLabel_3.TextColor3 = Color3.new(0.870588, 0.870588, 0.870588)
- TextLabel_3.TextSize = 14
- TextLabel_4.Parent = Frame
- TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel_4.BackgroundTransparency = 9
- TextLabel_4.Position = UDim2.new(0.713757217, 0, 0.961229384, 0)
- TextLabel_4.Size = UDim2.new(0, 142, 0, 16)
- TextLabel_4.Font = Enum.Font.SourceSans
- TextLabel_4.Text = "https://discord.gg/VWTgtKG"
- TextLabel_4.TextColor3 = Color3.new(0.870588, 0.870588, 0.870588)
- TextLabel_4.TextSize = 14
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.new(0.831373, 0.960784, 1)
- TextButton.BorderSizePixel = 0
- TextButton.Position = UDim2.new(0.0455383882, 0, 0.31456247, 0)
- TextButton.Size = UDim2.new(0, 163, 0, 67)
- TextButton.Font = Enum.Font.Fantasy
- TextButton.Text = "SUPER FAST SPEED"
- TextButton.TextColor3 = Color3.new(0, 0, 0)
- TextButton.TextSize = 14
- TextButton.MouseButton1Down:connect(function()
- --Vehicle Simulator AFK money / miles
- --Made by MaiLeane on YouTube
- --How to use
- --Load into the game then execute the script
- --Get in your car then type "/e racingmode" into chat
- --Then go as fast as you can,then once you're at a good speed
- --have this phrase copied "/e stop" and paste it into chat
- --scuffed but works enjoy
- local plr = game.Players.LocalPlayer
- local inftoggle = false
- function getvehicle()
- for i,v in pairs(game.Workspace.Vehicles:GetChildren()) do
- if v:IsA("Model") then
- if v.owner.Value == plr.Name then
- return v
- end
- end
- end
- return nil
- end
- function hint(txt, t)
- if t then
- local h = Instance.new("Hint",plr.PlayerGui)
- h.Text = txt
- wait(t)
- h:remove()
- else
- local h = Instance.new("Hint",plr.PlayerGui)
- h.Text = txt
- wait(2)
- h:remove()
- end
- end
- plr.Chatted:connect(function(msg)
- if msg:lower():sub(1,10) == "/e toggle:" then
- local ins = msg:lower():sub(11)
- local vehicle = getvehicle()
- if vehicle then
- if ins == "infnitro" then
- if inftoggle == true then
- inftoggle = false
- hint("(-)Disabled Infinite Nitro!(-)")
- else
- inftoggle = true
- hint("(+)Enabled Infinite Nitro!(+)")
- end
- end
- else
- hint("(-)You do not have a vehicle spawned!(-)")
- end
- elseif msg:lower():sub(1,14) == "/e nitrospeed:" then
- local num = msg:sub(15)
- local vehicle = getvehicle()
- if vehicle then
- vehicle.Handling.Nitro.NitroSpeed.Value = tonumber(num)
- else
- hint("(-)You do not have a vehicle spawned!(-)")
- end
- elseif msg:lower():sub(1,14) == "/e stop" then
- local num = msg:sub(1,15)
- local vehicle = getvehicle()
- if vehicle then
- vehicle.Chassis.VehicleSeat.Anchored = true
- else
- hint("(-)You do not have a vehicle spawned!(-)")
- end
- elseif msg:lower():sub(1,14) == "/e nitroforce:" then
- local num = msg:sub(1,15)
- local vehicle = getvehicle()
- if vehicle then
- vehicle.Handling.Nitro.NitroForce.Value = tonumber(num)
- else
- hint("(-)You do not have a vehicle spawned!(-)")
- end
- elseif msg:lower():sub(1,12) == "/e maxspeed:" then
- local num = msg:sub(13)
- local vehicle = getvehicle()
- if vehicle then
- vehicle.Handling.MaxSpeed.Value = tonumber(num)
- else
- hint("(-)You do not have a vehicle spawned!(-)")
- end
- elseif msg:lower():sub(1,10) == "/e torque:" then
- local num = msg:sub(11)
- local vehicle = getvehicle()
- if vehicle then
- vehicle.Handling.Torque.Value = tonumber(num)
- else
- hint("(-)You do not have a vehicle spawned!(-)")
- end
- elseif msg:lower():sub(1,12) == "/e friction:" then
- local num = msg:sub(13)
- local vehicle = getvehicle()
- if vehicle then
- vehicle.Handling.FrictionOffroad.Value = tonumber(num)
- vehicle.Handling.FrictionRoad.Value = tonumber(num)
- else
- hint("(-)You do not have a vehicle spawned!(-)")
- end
- elseif msg:lower():sub(1,13) == "/e racingmode" then
- local vehicle = getvehicle()
- if vehicle then
- han = vehicle.Handling
- han.MaxSpeed.Value = 10000
- han.Torque.Value = 30000
- han.SteeringRadiusConstant.Value = 12000
- han.FrictionOffroad.Value = 200
- han.FrictionRoad.Value = 200
- han.Nitro.NitroSpeed.Value = 300
- han.Nitro.NitroForce.Value = 8000
- han.TurboJump.TurboJumpHeight.Value = 300
- inftoggle = true
- else
- hint("(-)You do not have a vehicle spawned!(-)")
- end
- end
- end)
- wait(0.5)
- while inftoggle == true do
- wait(0.02)
- local vehicle = getvehicle()
- if vehicle then
- vehicle.Handling.Nitro.NitroAmount.Value = 250
- end
- end
- end)
- TextLabel_5.Parent = Frame
- TextLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel_5.BackgroundTransparency = 9
- TextLabel_5.Position = UDim2.new(0.405428261, 0, 0.391449392, 0)
- TextLabel_5.Size = UDim2.new(0, 287, 0, 133)
- TextLabel_5.Font = Enum.Font.Fantasy
- TextLabel_5.Text = "After Clicking SUPER FAST SPEED, type in chat /e racingmode after you typed that your vehicle should be boosted on speed if it didn't work try driving around and type /e racingmode again"
- TextLabel_5.TextColor3 = Color3.new(0.87451, 0.87451, 0.87451)
- TextLabel_5.TextScaled = true
- TextLabel_5.TextSize = 14
- TextLabel_5.TextWrapped = true
- -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement