Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local youtubehub = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local jpbut = Instance.new("TextButton")
- local wsbut = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- --Properties:
- youtubehub.Name = "youtubehub"
- youtubehub.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- youtubehub.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = youtubehub
- Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- Frame.Position = UDim2.new(0.438506573, 0, 0.368525922, 0)
- Frame.Size = UDim2.new(0, 250, 0, 188)
- Frame.Active = true
- Frame.Draggable = true
- jpbut.Name = "jpbut"
- jpbut.Parent = Frame
- jpbut.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- jpbut.Position = UDim2.new(0.0280000009, 0, 0.654255271, 0)
- jpbut.Size = UDim2.new(0, 96, 0, 50)
- jpbut.Font = Enum.Font.SourceSans
- jpbut.Text = "JumpPower"
- jpbut.TextColor3 = Color3.fromRGB(0, 0, 0)
- jpbut.TextSize = 14.000
- jpbut.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
- end)
- wsbut.Name = "wsbut"
- wsbut.Parent = Frame
- wsbut.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- wsbut.Position = UDim2.new(0.572000027, 0, 0.654255271, 0)
- wsbut.Size = UDim2.new(0, 96, 0, 50)
- wsbut.Font = Enum.Font.SourceSans
- wsbut.Text = "Walkspeed"
- wsbut.TextColor3 = Color3.fromRGB(0, 0, 0)
- wsbut.TextSize = 14.000
- wsbut.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
- end)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.Position = UDim2.new(0.100000001, 0, 0.0851063803, 0)
- TextLabel.Size = UDim2.new(0, 200, 0, 50)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Youtube Hub"
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextSize = 14.000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement