Advertisement
RedoGaming

lil rushed hub i made for yt

Jul 26th, 2020
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local youtubehub = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local jpbut = Instance.new("TextButton")
  9. local wsbut = Instance.new("TextButton")
  10. local TextLabel = Instance.new("TextLabel")
  11.  
  12. --Properties:
  13.  
  14. youtubehub.Name = "youtubehub"
  15. youtubehub.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. youtubehub.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Frame.Parent = youtubehub
  19. Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  20. Frame.Position = UDim2.new(0.438506573, 0, 0.368525922, 0)
  21. Frame.Size = UDim2.new(0, 250, 0, 188)
  22. Frame.Active = true
  23. Frame.Draggable = true
  24.  
  25. jpbut.Name = "jpbut"
  26. jpbut.Parent = Frame
  27. jpbut.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  28. jpbut.Position = UDim2.new(0.0280000009, 0, 0.654255271, 0)
  29. jpbut.Size = UDim2.new(0, 96, 0, 50)
  30. jpbut.Font = Enum.Font.SourceSans
  31. jpbut.Text = "JumpPower"
  32. jpbut.TextColor3 = Color3.fromRGB(0, 0, 0)
  33. jpbut.TextSize = 14.000
  34. jpbut.MouseButton1Down:connect(function()
  35. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
  36. end)
  37.  
  38.  
  39. wsbut.Name = "wsbut"
  40. wsbut.Parent = Frame
  41. wsbut.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  42. wsbut.Position = UDim2.new(0.572000027, 0, 0.654255271, 0)
  43. wsbut.Size = UDim2.new(0, 96, 0, 50)
  44. wsbut.Font = Enum.Font.SourceSans
  45. wsbut.Text = "Walkspeed"
  46. wsbut.TextColor3 = Color3.fromRGB(0, 0, 0)
  47. wsbut.TextSize = 14.000
  48. wsbut.MouseButton1Down:connect(function()
  49. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  50. end)
  51.  
  52.  
  53. TextLabel.Parent = Frame
  54. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  55. TextLabel.BackgroundTransparency = 1.000
  56. TextLabel.Position = UDim2.new(0.100000001, 0, 0.0851063803, 0)
  57. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  58. TextLabel.Font = Enum.Font.SourceSans
  59. TextLabel.Text = "Youtube Hub"
  60. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  61. TextLabel.TextSize = 14.000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement