Advertisement
Plug_RBLX

HenloMyGui

Dec 11th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 KB | None | 0 0
  1. -- Objects
  2.  
  3. local HenloMyGui = Instance.new("ScreenGui")
  4. local ScrollingFrame = Instance.new("ScrollingFrame")
  5. local Discordinfo = Instance.new("TextLabel")
  6. local Name = Instance.new("TextLabel")
  7. local Version = Instance.new("TextLabel")
  8. local JumpBoostButton = Instance.new("TextButton")
  9. local SpeedBoostButton = Instance.new("TextButton")
  10.  
  11. -- Properties
  12.  
  13. HenloMyGui.Name = "HenloMyGui"
  14. HenloMyGui.Parent = game.Workspace
  15.  
  16. ScrollingFrame.Parent = HenloMyGui
  17. ScrollingFrame.BackgroundColor3 = Color3.new(0.560784, 0.560784, 0.560784)
  18. ScrollingFrame.Draggable = true
  19. ScrollingFrame.Size = UDim2.new(0, 200, 0, 400)
  20. ScrollingFrame.BottomImage = "rbxassetid://2301"
  21. ScrollingFrame.TopImage = "rbxassetid://32132"
  22.  
  23. Discordinfo.Name = "Discord info"
  24. Discordinfo.Parent = ScrollingFrame
  25. Discordinfo.BackgroundColor3 = Color3.new(1, 1, 1)
  26. Discordinfo.BackgroundTransparency = 1
  27. Discordinfo.BorderSizePixel = 4
  28. Discordinfo.Position = UDim2.new(0, 0, 0, 1)
  29. Discordinfo.Size = UDim2.new(0, 200, 0, 50)
  30. Discordinfo.Font = Enum.Font.SourceSans
  31. Discordinfo.FontSize = Enum.FontSize.Size18
  32. Discordinfo.Text = "https://discord.gg/Qt39CTY"
  33. Discordinfo.TextColor3 = Color3.new(0, 1, 0.533333)
  34. Discordinfo.TextSize = 16
  35.  
  36. Name.Name = "Name"
  37. Name.Parent = ScrollingFrame
  38. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  39. Name.BackgroundTransparency = 1
  40. Name.Position = UDim2.new(0, 0, 0, 20)
  41. Name.Size = UDim2.new(0, 200, 0, 50)
  42. Name.Font = Enum.Font.SourceSans
  43. Name.FontSize = Enum.FontSize.Size36
  44. Name.Text = "HenloMyGui"
  45. Name.TextColor3 = Color3.new(1, 0, 0.0156863)
  46. Name.TextSize = 33
  47.  
  48. Version.Name = "Version"
  49. Version.Parent = ScrollingFrame
  50. Version.BackgroundColor3 = Color3.new(1, 1, 1)
  51. Version.BackgroundTransparency = 1
  52. Version.Position = UDim2.new(0, 0, 0, 40)
  53. Version.Rotation = -5
  54. Version.Size = UDim2.new(0, 200, 0, 50)
  55. Version.Font = Enum.Font.SourceSans
  56. Version.FontSize = Enum.FontSize.Size28
  57. Version.Text = "V1.1 Raw alpha"
  58. Version.TextColor3 = Color3.new(0.968628, 0.494118, 1)
  59. Version.TextSize = 27
  60.  
  61. JumpBoostButton.Name = "Jump Boost Button"
  62. JumpBoostButton.Parent = ScrollingFrame
  63. JumpBoostButton.BackgroundColor3 = Color3.new(1, 1, 1)
  64. JumpBoostButton.Position = UDim2.new(0, 0, 0, 150)
  65. JumpBoostButton.Size = UDim2.new(0, 200, 0, 50)
  66. JumpBoostButton.Font = Enum.Font.Arcade
  67. JumpBoostButton.FontSize = Enum.FontSize.Size28
  68. JumpBoostButton.Text = "MegaJump"
  69. JumpBoostButton.TextColor3 = Color3.new(1, 0, 0.0156863)
  70. JumpBoostButton.TextSize = 25
  71. local plr = game.Players.LocalPlayer
  72.  
  73. script.Parent.MouseButton1Click:connect(function()
  74.  
  75. plr.Character.Humanoid.JumpPower = 512515100
  76.  
  77. wait(5)
  78.  
  79. plr.Character.Humanoid.JumpPower = 50
  80.  
  81. end)
  82.  
  83. SpeedBoostButton.Name = "Speed Boost Button"
  84. SpeedBoostButton.Parent = ScrollingFrame
  85. SpeedBoostButton.BackgroundColor3 = Color3.new(1, 1, 1)
  86. SpeedBoostButton.Position = UDim2.new(0, 0, 0, 90)
  87. SpeedBoostButton.Size = UDim2.new(0, 200, 0, 50)
  88. SpeedBoostButton.Font = Enum.Font.Arcade
  89. SpeedBoostButton.FontSize = Enum.FontSize.Size28
  90. SpeedBoostButton.Text = "MegaSpeed"
  91. SpeedBoostButton.TextColor3 = Color3.new(1, 0, 0.0156863)
  92. SpeedBoostButton.TextSize = 25
  93. local plr = game.Players.LocalPlayer
  94.  
  95.  
  96.  
  97. script.Parent.MouseButton1Click:connect(function()
  98.  
  99. plr.Character.Humanoid.WalkSpeed = 70
  100.  
  101. wait(5)
  102.  
  103. plr.Character.Humanoid.WalkSpeed = 16
  104.  
  105. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement