Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Version: 9.32
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local ImageLabel = Instance.new("ImageLabel")
- local close = Instance.new("TextButton")
- local runaway = Instance.new("TextButton")
- local timerguess = Instance.new("TextBox")
- local sir = Instance.new("TextLabel")
- local useless = Instance.new("TextLabel")
- --Props:
- ScreenGui.Parent = game.CoreGui
- ImageLabel.Parent = ScreenGui
- ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- ImageLabel.BackgroundTransparency = 1
- ImageLabel.Active = true
- ImageLabel.Draggable = true
- ImageLabel.Position = UDim2.new(0.025141418, 0, 0.743243217, 0)
- ImageLabel.Size = UDim2.new(0, 159, 0, 134)
- ImageLabel.Image = "rbxassetid://742285041"
- close.Name = "close"
- close.Parent = ImageLabel
- close.BackgroundColor3 = Color3.new(1, 1, 1)
- close.BackgroundTransparency = 1
- close.BorderSizePixel = 0
- close.Position = UDim2.new(0.856472671, 0, 0.869246602, 0)
- close.Size = UDim2.new(0, 23, 0, 17)
- close.Font = Enum.Font.SourceSansSemibold
- close.Text = "X"
- close.TextColor3 = Color3.new(0, 0, 0)
- close.TextSize = 14
- runaway.Name = "runaway"
- runaway.Parent = ImageLabel
- runaway.BackgroundColor3 = Color3.new(1, 1, 1)
- runaway.BackgroundTransparency = 1
- runaway.BorderSizePixel = 0
- runaway.Position = UDim2.new(0.333333343, 0, 0.843496799, 0)
- runaway.Size = UDim2.new(0, 53, 0, 24)
- runaway.Font = Enum.Font.SourceSansSemibold
- runaway.Text = "run script"
- runaway.TextColor3 = Color3.new(0.129412, 0.129412, 0.129412)
- runaway.TextSize = 14
- timerguess.Name = "timerguess"
- timerguess.Parent = ImageLabel
- timerguess.BackgroundColor3 = Color3.new(1, 1, 1)
- timerguess.BorderSizePixel = 0
- timerguess.Position = UDim2.new(0.17681396, 0, 0.49032706, 0)
- timerguess.Size = UDim2.new(0, 108, 0, 38)
- timerguess.Font = Enum.Font.SourceSansSemibold
- timerguess.Text = "hi"
- timerguess.TextColor3 = Color3.new(0, 0, 0)
- timerguess.TextSize = 12
- timerguess.TextWrapped = true
- timerguess.TextYAlignment = Enum.TextYAlignment.Bottom
- sir.Name = "sir"
- sir.Parent = timerguess
- sir.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
- sir.BorderColor3 = Color3.new(1, 1, 1)
- sir.BorderSizePixel = 2
- sir.LayoutOrder = 1
- sir.Position = UDim2.new(0, 0, 1, 0)
- sir.Size = UDim2.new(0, 108, 0, 2)
- sir.Font = Enum.Font.SourceSans
- sir.Text = ""
- sir.TextColor3 = Color3.new(0, 0, 0)
- sir.TextSize = 14
- useless.Name = "useless"
- useless.Parent = ImageLabel
- useless.BackgroundColor3 = Color3.new(1, 1, 1)
- useless.BorderSizePixel = 0
- useless.Position = UDim2.new(0.15794605, 0, 0.166709006, 0)
- useless.Size = UDim2.new(0, 108, 0, 47)
- useless.Font = Enum.Font.SourceSansSemibold
- useless.Text = "Reset time"
- useless.TextColor3 = Color3.new(0, 0, 0)
- useless.TextSize = 14
- -- Scripts:
- timerguess.Focused:connect(function()
- sir.BackgroundColor3 = Color3.fromRGB(158,158,158)
- end)
- timerguess.FocusLost:connect(function()
- sir.BackgroundColor3 = Color3.fromRGB(33,33,33)
- end)
- runaway.MouseButton1Click:connect(function()
- for i,v in pairs(game:GetService'Workspace'.Vehicles:GetChildren()) do
- if v:IsA'Model' then
- if v.owner.Value == game.Players.LocalPlayer.Name then
- handling = v.Handling
- handling.MaxSpeed.Value = 800
- handling.Torque.Value = 100000
- handling.SteeringRadiusConstant.Value = 120000000
- end
- end
- end
- function abc()
- local vehicle = workspace.Vehicles:getChildren()
- for i=1,#vehicle do
- if vehicle[i]:findFirstChild("owner") then
- if vehicle[i].owner.Value == game.Players.LocalPlayer.Name then
- abc = vehicle[i]
- end
- end
- end
- end
- wait(2)
- abc()
- abc.PrimaryPart = abc.Chassis.VehicleSeat
- wait(1)
- while wait(timerguess.Text) do
- abc:SetPrimaryPartCFrame(CFrame.new(-2470,60,777))
- end
- end)
- close.MouseButton1Click:connect(function()
- game.CoreGui.ScreenGui:Destroy()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement