Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Gui = Instance.new("ScreenGui")
- local Bar = Instance.new("Frame")
- local Main = Instance.new("Frame")
- local Button1 = Instance.new("TextButton")
- local Button2 = Instance.new("TextButton")
- local Button3 = Instance.new("TextButton")
- local Button4 = Instance.new("TextButton")
- local Button5 = Instance.new("TextButton")
- local Button6 = Instance.new("TextButton")
- local Button7 = Instance.new("TextButton")
- local Button8 = Instance.new("TextButton")
- local Button9 = Instance.new("TextButton")
- local Button10 = Instance.new("TextButton")
- local Txt = Instance.new("TextLabel")
- local farmDebounce = false
- local speedDebounce = false
- local jumpDebounce = false
- function check()
- for _,v in pairs(workspace.Vehicles:GetChildren()) do
- if v:IsA("Model") and v:FindFirstChild("owner").Value == game.Players.LocalPlayer.Name then
- car = v
- end
- end
- if car ~= nil then
- return true
- else
- return false
- end
- end
- Gui.Parent = game.CoreGui
- Bar.Name = "Bar"
- Bar.Parent = Gui
- Bar.Active = true
- Bar.BackgroundColor3 = Color3.new(0.258824, 0.258824, 0.258824)
- Bar.Draggable = true
- Bar.Position = UDim2.new(0.825, 0, 0.55, 0)
- Bar.Selectable = true
- Bar.Size = UDim2.new(0, 335, 0, 31)
- Main.Name = "Main"
- Main.Parent = Bar
- Main.BackgroundColor3 = Color3.new(0.35, 0.35, 0.35)
- Main.BackgroundTransparency = 0.20000000298023
- Main.Position = UDim2.new(0, 0, 1, 0)
- Main.Size = UDim2.new(0, 335, 0, 260)
- Button1.Name = "Button1"
- Button1.Parent = Main
- Button1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
- Button1.Position = UDim2.new(0.035, 0, 0, 0)
- Button1.Size = UDim2.new(0, 150, 0, 50)
- Button1.Font = Enum.Font.SourceSans
- Button1.Text = "TpToCrate"
- Button1.TextColor3 = Color3.new(1, 1, 1)
- Button1.TextSize = 30
- Button1.MouseButton1Click:connect(function()
- for i,v in pairs(workspace:GetDescendants()) do
- if v.Name == "Crate" and v.Parent.Name == "Crate" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame + Vector3.new(0,100,0)
- end
- end
- game.ReplicatedStorage.items.open_crate:InvokeServer("Standard")
- game.ReplicatedStorage.items.open_crate:InvokeServer("Specialized")
- game.ReplicatedStorage.items.open_crate:InvokeServer("Rare")
- end)
- Button2.Name = "Button2"
- Button2.Parent = Main
- Button2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
- Button2.Position = UDim2.new(0.515, 0, 0, 0)
- Button2.Size = UDim2.new(0, 150, 0, 50)
- Button2.Font = Enum.Font.SourceSans
- Button2.Text = "FastSpeed"
- Button2.TextColor3 = Color3.new(1, 1, 1)
- Button2.TextSize = 30
- Button2.MouseButton1Click:connect(function()
- if check() == true then
- car.Handling.MaxSpeed.Value = 1000
- car.Handling.Torque.Value = 20000
- end
- end)
- Button3.Name = "TextButton3"
- Button3.Parent = Main
- Button3.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
- Button3.Position = UDim2.new(0.035, 0, 0.20, 0)
- Button3.Size = UDim2.new(0, 150, 0, 50)
- Button3.Font = Enum.Font.SourceSans
- Button3.Text = "CarJumpX5"
- Button3.TextColor3 = Color3.new(1, 1, 1)
- Button3.TextSize = 30
- Button3.MouseButton1Click:connect(function()
- if check() == true and jumpDebounce == false then
- car.Handling.TurboJump.TurboJumpHeight.Value = 125
- jumpDebounce = true
- elseif check() == true and jumpDebounce == true then
- car.Handling.TurboJump.TurboJumpHeight.Value = 25
- jumpDebounce = false
- end
- end)
- Button4.Name = "TextButton4"
- Button4.Parent = Main
- Button4.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
- Button4.Position = UDim2.new(0.515, 0, 0.20, 0)
- Button4.Size = UDim2.new(0, 150, 0, 50)
- Button4.Font = Enum.Font.SourceSans
- Button4.Text = "MoneyFarm"
- Button4.TextColor3 = Color3.new(1, 1, 1)
- Button4.TextSize = 30
- Button4.MouseButton1Click:connect(function()
- if check() == true and farmDebounce == false then
- car.Chassis.VehicleSeat.Anchored = true
- farmDebounce = true
- elseif check() == true and farmDebounce == true then
- car.Chassis.VehicleSeat.Anchored = false
- farmDebounce = false
- end
- end)
- Button5.Name = "TextButton5"
- Button5.Parent = Main
- Button5.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
- Button5.Position = UDim2.new(0.035, 0, 0.4, 0)
- Button5.Size = UDim2.new(0, 150, 0, 50)
- Button5.Font = Enum.Font.SourceSans
- Button5.Text = "WinAirport"
- Button5.TextColor3 = Color3.new(1, 1, 1)
- Button5.TextSize = 30
- Button5.MouseButton1Click:connect(function()
- if check() == true then
- car:SetPrimaryPartCFrame(workspace.race_checkpoints.airport_checkpoints["Checkpoint_1_Airport Quarter Mile"].CFrame)
- end
- end)
- Button6.Name = "TextButton6"
- Button6.Parent = Main
- Button6.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
- Button6.Position = UDim2.new(0.515, 0, 0.4, 0)
- Button6.Size = UDim2.new(0, 150, 0, 50)
- Button6.Font = Enum.Font.SourceSans
- Button6.Text = "WinQuartMile"
- Button6.TextColor3 = Color3.new(1, 1, 1)
- Button6.TextSize = 30
- Button6.MouseButton1Click:connect(function()
- if check() == true then
- car:SetPrimaryPartCFrame(workspace.race_checkpoints.quartermile_checkpoints["Checkpoint_1_Quarter Mile"].CFrame)
- end
- end)
- Button7.Name = "TextButton7"
- Button7.Parent = Main
- Button7.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
- Button7.Position = UDim2.new(0.035, 0, 0.60, 0)
- Button7.Size = UDim2.new(0, 150, 0, 50)
- Button7.Font = Enum.Font.SourceSans
- Button7.Text = "AutoShop"
- Button7.TextColor3 = Color3.new(1, 1, 1)
- Button7.TextSize = 30
- Button7.MouseButton1Click:connect(function()
- if check() == false then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-1903, 53.297, -1216))
- elseif check() == true then
- car:SetPrimaryPartCFrame(CFrame.new(Vector3.new(-1903, 53.297, -1216)))
- end
- end)
- Button8.Name = "TextButton8"
- Button8.Parent = Main
- Button8.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
- Button8.Position = UDim2.new(0.515, 0, 0.60, 0)
- Button8.Size = UDim2.new(0, 150, 0, 50)
- Button8.Font = Enum.Font.SourceSans
- Button8.Text = "SuperCars"
- Button8.TextColor3 = Color3.new(1, 1, 1)
- Button8.TextSize = 30
- Button8.MouseButton1Click:connect(function()
- if check() == false then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-414, 60.1, -1191))
- elseif check() == true then
- car:SetPrimaryPartCFrame(CFrame.new(Vector3.new(-418.28, 50, -1144.09)))
- end
- end)
- Button9.Name = "TextButton9"
- Button9.Parent = Main
- Button9.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
- Button9.Position = UDim2.new(0.035, 0, 0.80, 0)
- Button9.Size = UDim2.new(0, 150, 0, 50)
- Button9.Font = Enum.Font.SourceSans
- Button9.Text = "Tesla"
- Button9.TextColor3 = Color3.new(1, 1, 1)
- Button9.TextSize = 30
- Button9.MouseButton1Click:connect(function()
- if check() == false then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-2746.6, 50, -476.8))
- elseif check() == true then
- car:SetPrimaryPartCFrame(CFrame.new(Vector3.new(-2760.3, 50, -475)))
- end
- end)
- Button10.Name = "TextButton10"
- Button10.Parent = Main
- Button10.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
- Button10.Position = UDim2.new(0.515, 0, 0.80, 0)
- Button10.Size = UDim2.new(0, 150, 0, 50)
- Button10.Font = Enum.Font.SourceSans
- Button10.Text = "SUPERSPEED"
- Button10.TextColor3 = Color3.new(1, 1, 1)
- Button10.TextSize = 30
- Button10.MouseButton1Click:connect(function()
- if check() == true and farmDebounce == false then
- car.Handling.MaxSpeed.Value = 1500
- car.Handling.Torque.Value = 50000
- farmDebounce = true
- elseif check() == true and farmDebounce == true then
- car.Handling.MaxSpeed.Value = 1000
- car.Handling.Torque.Value = 20000
- farmDebounce = false
- end
- end)
- Txt.Name = "Label"
- Txt.Parent = Bar
- Txt.BackgroundColor3 = Color3.new(1, 1, 1)
- Txt.BackgroundTransparency = 1
- Txt.BorderSizePixel = 0
- Txt.Position = UDim2.new(0.13, 0, 0, 0)
- Txt.Size = UDim2.new(0, 242, 0, 31)
- Txt.Font = Enum.Font.SourceSans
- Txt.Text = "VehicleSimulator"
- Txt.TextColor3 = Color3.new(1, 1, 1)
- Txt.TextScaled = true
- Txt.TextSize = 14
- Txt.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment