Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell Infortality.
- -- Version: 2.82
- -- Instances:
- local suspension = Instance.new("ScreenGui")
- local setsuspensiongui = Instance.new("Frame")
- local Frame = Instance.new("Frame")
- local Frame_2 = Instance.new("Frame")
- local setheight = Instance.new("TextButton")
- local amount = Instance.new("TextBox")
- local exit = Instance.new("TextButton")
- --Properties:
- suspension.Name = "suspension"
- suspension.Parent = game.CoreGui
- suspension.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- setsuspensiongui.Name = "setsuspensiongui"
- setsuspensiongui.Parent = suspension
- setsuspensiongui.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- setsuspensiongui.BackgroundTransparency = 0.03999999910593
- setsuspensiongui.Position = UDim2.new(1, 0, 0.128000006, 0)
- setsuspensiongui.Size = UDim2.new(0, 214, 0, 182)
- Frame.Parent = setsuspensiongui
- Frame.BackgroundColor3 = Color3.new(0.333333, 0, 1)
- Frame.BackgroundTransparency = 0.03999999910593
- Frame.BorderSizePixel = 0
- Frame.Size = UDim2.new(0, 214, 0, 20)
- Frame_2.Parent = setsuspensiongui
- Frame_2.BackgroundColor3 = Color3.new(0.333333, 0, 1)
- Frame_2.BackgroundTransparency = 0.03999999910593
- Frame_2.BorderSizePixel = 0
- Frame_2.Position = UDim2.new(0, 0, 0.883977771, 0)
- Frame_2.Size = UDim2.new(0, 214, 0, 21)
- setheight.Name = "setheight"
- setheight.Parent = setsuspensiongui
- setheight.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- setheight.BackgroundTransparency = 0.03999999910593
- setheight.BorderColor3 = Color3.new(0.333333, 0, 1)
- setheight.Position = UDim2.new(0.130841121, 0, 0.649760544, 0)
- setheight.Size = UDim2.new(0, 156, 0, 31)
- setheight.Font = Enum.Font.GothamBold
- setheight.Text = "Set Height"
- setheight.TextColor3 = Color3.new(0.333333, 0, 1)
- setheight.TextSize = 14
- amount.Name = "amount"
- amount.Parent = setsuspensiongui
- amount.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- amount.BackgroundTransparency = 0.03999999910593
- amount.BorderColor3 = Color3.new(0.333333, 0, 1)
- amount.Position = UDim2.new(0.0607476644, 0, 0.273494005, 0)
- amount.Size = UDim2.new(0, 186, 0, 37)
- amount.Font = Enum.Font.GothamBold
- amount.Text = "Set amount 0-10"
- amount.TextColor3 = Color3.new(0.333333, 0, 1)
- amount.TextSize = 14
- exit.Name = "exit"
- exit.Parent = setsuspensiongui
- exit.BackgroundColor3 = Color3.new(1, 1, 1)
- exit.BackgroundTransparency = 1
- exit.BorderSizePixel = 0
- exit.Position = UDim2.new(0.869158924, 0, 0.107574642, 0)
- exit.Size = UDim2.new(0, 28, 0, 28)
- exit.Font = Enum.Font.SourceSans
- exit.Text = "X"
- exit.TextColor3 = Color3.new(0.333333, 0, 1)
- exit.TextSize = 25
- -- Scripts:
- setsuspensiongui.Active = true
- setsuspensiongui.Draggable = true
- setsuspensiongui:TweenPosition(UDim2.new(0.494, 0,0.128, 0),'Out','Sine',1)
- setsuspensiongui.Active = true
- setsuspensiongui.Draggable = true
- exit.MouseButton1Click:connect(function()
- setsuspensiongui:TweenPosition(UDim2.new(1, 0,0.128, 0),'Out','Sine',1)
- wait(1)
- suspension:Destroy()
- end)
- setheight.MouseButton1Click:connect(function()
- local am = amount.Text
- local veh = game.workspace.ObjectSelection:FindFirstChild(game.Players.LocalPlayer.Name.."'s Vehicle")
- veh.CarChassis.Suspension.Value = am
- end)
Advertisement
Add Comment
Please, Sign In to add comment