Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local HenloMyGui = Instance.new("ScreenGui")
- local ScrollingFrame = Instance.new("ScrollingFrame")
- local Discordinfo = Instance.new("TextLabel")
- local Name = Instance.new("TextLabel")
- local Version = Instance.new("TextLabel")
- local JumpBoostButton = Instance.new("TextButton")
- local SpeedBoostButton = Instance.new("TextButton")
- -- Properties
- HenloMyGui.Name = "HenloMyGui"
- HenloMyGui.Parent = game.Workspace
- ScrollingFrame.Parent = HenloMyGui
- ScrollingFrame.BackgroundColor3 = Color3.new(0.560784, 0.560784, 0.560784)
- ScrollingFrame.Draggable = true
- ScrollingFrame.Size = UDim2.new(0, 200, 0, 400)
- ScrollingFrame.BottomImage = "rbxassetid://2301"
- ScrollingFrame.TopImage = "rbxassetid://32132"
- Discordinfo.Name = "Discord info"
- Discordinfo.Parent = ScrollingFrame
- Discordinfo.BackgroundColor3 = Color3.new(1, 1, 1)
- Discordinfo.BackgroundTransparency = 1
- Discordinfo.BorderSizePixel = 4
- Discordinfo.Position = UDim2.new(0, 0, 0, 1)
- Discordinfo.Size = UDim2.new(0, 200, 0, 50)
- Discordinfo.Font = Enum.Font.SourceSans
- Discordinfo.FontSize = Enum.FontSize.Size18
- Discordinfo.Text = "https://discord.gg/Qt39CTY"
- Discordinfo.TextColor3 = Color3.new(0, 1, 0.533333)
- Discordinfo.TextSize = 16
- Name.Name = "Name"
- Name.Parent = ScrollingFrame
- Name.BackgroundColor3 = Color3.new(1, 1, 1)
- Name.BackgroundTransparency = 1
- Name.Position = UDim2.new(0, 0, 0, 20)
- Name.Size = UDim2.new(0, 200, 0, 50)
- Name.Font = Enum.Font.SourceSans
- Name.FontSize = Enum.FontSize.Size36
- Name.Text = "HenloMyGui"
- Name.TextColor3 = Color3.new(1, 0, 0.0156863)
- Name.TextSize = 33
- Version.Name = "Version"
- Version.Parent = ScrollingFrame
- Version.BackgroundColor3 = Color3.new(1, 1, 1)
- Version.BackgroundTransparency = 1
- Version.Position = UDim2.new(0, 0, 0, 40)
- Version.Rotation = -5
- Version.Size = UDim2.new(0, 200, 0, 50)
- Version.Font = Enum.Font.SourceSans
- Version.FontSize = Enum.FontSize.Size28
- Version.Text = "V1.1 Raw alpha"
- Version.TextColor3 = Color3.new(0.968628, 0.494118, 1)
- Version.TextSize = 27
- JumpBoostButton.Name = "Jump Boost Button"
- JumpBoostButton.Parent = ScrollingFrame
- JumpBoostButton.BackgroundColor3 = Color3.new(1, 1, 1)
- JumpBoostButton.Position = UDim2.new(0, 0, 0, 150)
- JumpBoostButton.Size = UDim2.new(0, 200, 0, 50)
- JumpBoostButton.Font = Enum.Font.Arcade
- JumpBoostButton.FontSize = Enum.FontSize.Size28
- JumpBoostButton.Text = "MegaJump"
- JumpBoostButton.TextColor3 = Color3.new(1, 0, 0.0156863)
- JumpBoostButton.TextSize = 25
- local plr = game.Players.LocalPlayer
- script.Parent.MouseButton1Click:connect(function()
- plr.Character.Humanoid.JumpPower = 512515100
- wait(5)
- plr.Character.Humanoid.JumpPower = 50
- end)
- SpeedBoostButton.Name = "Speed Boost Button"
- SpeedBoostButton.Parent = ScrollingFrame
- SpeedBoostButton.BackgroundColor3 = Color3.new(1, 1, 1)
- SpeedBoostButton.Position = UDim2.new(0, 0, 0, 90)
- SpeedBoostButton.Size = UDim2.new(0, 200, 0, 50)
- SpeedBoostButton.Font = Enum.Font.Arcade
- SpeedBoostButton.FontSize = Enum.FontSize.Size28
- SpeedBoostButton.Text = "MegaSpeed"
- SpeedBoostButton.TextColor3 = Color3.new(1, 0, 0.0156863)
- SpeedBoostButton.TextSize = 25
- local plr = game.Players.LocalPlayer
- script.Parent.MouseButton1Click:connect(function()
- plr.Character.Humanoid.WalkSpeed = 70
- wait(5)
- plr.Character.Humanoid.WalkSpeed = 16
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement