Advertisement
OfficeR0808

Source Code GUI

Dec 10th, 2019
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.01 KB | None | 0 0
  1. -- My video = https://youtu.be/j3Lt1Uxc7Nc
  2. -- Like Please :)
  3. -- Made by MoranPlay :3
  4. local on = false
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextButton = Instance.new("TextButton")
  9. local TextButton_2 = Instance.new("TextButton")
  10. local TextLabel = Instance.new("TextLabel")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.CoreGui
  15. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. Frame.Parent = ScreenGui
  18. Frame.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  19. Frame.Position = UDim2.new(0.443636358, 0, 0.351550967, 0)
  20. Frame.Size = UDim2.new(0, 216, 0, 184)
  21. Frame.Active = true
  22. Frame.Draggable = true
  23.  
  24. TextButton.Parent = Frame
  25. TextButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  26. TextButton.Position = UDim2.new(0.0740741119, 0, 0.695652187, 0)
  27. TextButton.Size = UDim2.new(0, 92, 0, 42)
  28. TextButton.Font = Enum.Font.SourceSans
  29. TextButton.Text = "Inifinite Jump"
  30. TextButton.TextColor3 = Color3.new(1, 1, 1)
  31. TextButton.TextScaled = true
  32. TextButton.TextSize = 14
  33. TextButton.TextWrapped = true
  34. TextButton.MouseButton1Down:connect(function()
  35. if on == false then
  36. on = true
  37. _G.infinjump = true
  38.  
  39. local Player = game:GetService("Players").LocalPlayer
  40. local Mouse = Player:GetMouse()
  41. Mouse.KeyDown:connect(function(k)
  42. if _G.infinjump then
  43. if k:byte() == 32 then
  44. local Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  45. Humanoid:ChangeState("Jumping")
  46. wait(0.1)
  47. Humanoid:ChangeState("Seated")
  48. end
  49. end
  50. end)
  51.  
  52. local Player = game:GetService("Players").LocalPlayer
  53. local Mouse = Player:GetMouse()
  54. Mouse.KeyDown:connect(function(k)
  55. k = k:lower()
  56. if k == "f" then
  57. if _G.infinjump == true then
  58. _G.infinjump = false
  59. else
  60. _G.infinjump = true
  61. end
  62. end
  63. end)
  64. end
  65. end)
  66.  
  67.  
  68. TextButton_2.Parent = Frame
  69. TextButton_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  70. TextButton_2.Position = UDim2.new(0.50000006, 0, 0.695652187, 0)
  71. TextButton_2.Size = UDim2.new(0, 92, 0, 42)
  72. TextButton_2.Font = Enum.Font.SourceSans
  73. TextButton_2.Text = "Walkspeed"
  74. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  75. TextButton_2.TextScaled = true
  76. TextButton_2.TextSize = 14
  77. TextButton_2.TextWrapped = true
  78. TextButton_2.MouseButton1Down:connect(function()
  79. if on == false then
  80. on = true
  81. game.Workspace.Lemon14517.Humanoid.WalkSpeed = 130 -- Change the number to the speed you want
  82. TextButton_2.Text = "WalkSpeed ON"
  83. else
  84. on = false
  85. game.Workspace.Lemon14517.Humanoid.WalkSpeed = 100 -- Change the number to the speed you want
  86. TextButton_2.Text = "WalkSpeed OFF"
  87. end
  88. end)
  89.  
  90.  
  91. TextLabel.Parent = Frame
  92. TextLabel.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  93. TextLabel.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  94. TextLabel.Size = UDim2.new(0, 216, 0, 50)
  95. TextLabel.Font = Enum.Font.SourceSans
  96. TextLabel.Text = "TUTORIAL GUI"
  97. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  98. TextLabel.TextScaled = true
  99. TextLabel.TextSize = 14
  100. TextLabel.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement