Advertisement
HAIMA

MM2 Jump

Jan 26th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local MM2Jump = Instance.new("ScreenGui")
  7. local MainFrame = Instance.new("Frame")
  8. local ExecuteButton = Instance.new("TextButton")
  9. local TitleLabel = Instance.new("TextLabel")
  10. local TextBox = Instance.new("TextBox")
  11. local Exit = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. MM2Jump.Name = "MM2Jump"
  16. MM2Jump.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17. MM2Jump.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. MainFrame.Name = "MainFrame"
  20. MainFrame.Parent = MM2Jump
  21. MainFrame.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  22. MainFrame.BackgroundTransparency = 0.5
  23. MainFrame.Position = UDim2.new(0.688543379, 0, 0.899999976, 0)
  24. MainFrame.Size = UDim2.new(0.100000001, 0, 0.100000001, 1)
  25. MainFrame.Position = UDim2.new(0.689, 0,1, 0)
  26. wait(.1)
  27. MainFrame:TweenPosition(UDim2.new(0.689, 0,.9, 0))
  28.  
  29. ExecuteButton.Name = "ExecuteButton"
  30. ExecuteButton.Parent = MainFrame
  31. ExecuteButton.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  32. ExecuteButton.BackgroundTransparency = 0.5
  33. ExecuteButton.Position = UDim2.new(0, 0, 0.691747546, 0)
  34. ExecuteButton.Size = UDim2.new(0.999999881, 0, 0.30825308, 0)
  35. ExecuteButton.Font = Enum.Font.SourceSansBold
  36. ExecuteButton.Text = "Execute"
  37. ExecuteButton.TextColor3 = Color3.new(1, 1, 1)
  38. ExecuteButton.TextScaled = true
  39. ExecuteButton.TextSize = 14
  40. ExecuteButton.TextStrokeColor3 = Color3.new(1, 1, 1)
  41. ExecuteButton.TextWrapped = true
  42. ExecuteButton.MouseButton1Down:connect(function()
  43. game.Players.LocalPlayer.Character.Humanoid.JumpPower = TextBox.Text
  44. end)
  45.  
  46. TitleLabel.Name = "TitleLabel"
  47. TitleLabel.Parent = MainFrame
  48. TitleLabel.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  49. TitleLabel.BackgroundTransparency = 0.40000000596046
  50. TitleLabel.BorderSizePixel = 0
  51. TitleLabel.Size = UDim2.new(1, 0, 0.200000003, 0)
  52. TitleLabel.Font = Enum.Font.SourceSansBold
  53. TitleLabel.Text = "MM2 Jump+"
  54. TitleLabel.TextColor3 = Color3.new(1, 1, 1)
  55. TitleLabel.TextScaled = true
  56. TitleLabel.TextSize = 14
  57. TitleLabel.TextWrapped = true
  58.  
  59. TextBox.Parent = MainFrame
  60. TextBox.BackgroundColor3 = Color3.new(0, 0, 0)
  61. TextBox.BackgroundTransparency = 0.5
  62. TextBox.BorderSizePixel = 0
  63. TextBox.Position = UDim2.new(0.15003261, 0, 0.357766747, 0)
  64. TextBox.Size = UDim2.new(0.691324234, 0, 0.260679722, 0)
  65. TextBox.Font = Enum.Font.SourceSansBold
  66. TextBox.Text = ""
  67. TextBox.TextColor3 = Color3.new(1, 1, 1)
  68. TextBox.TextScaled = true
  69. TextBox.TextSize = 35
  70. TextBox.TextWrapped = true
  71.  
  72. Exit.Name = "Exit"
  73. Exit.Parent = MainFrame
  74. Exit.BackgroundColor3 = Color3.new(1, 1, 1)
  75. Exit.BackgroundTransparency = 1
  76. Exit.BorderSizePixel = 0
  77. Exit.Position = UDim2.new(0.848010421, 0, 0, 0)
  78. Exit.Size = UDim2.new(0.150033057, 0, 0.200000018, 0)
  79. Exit.Font = Enum.Font.SourceSans
  80. Exit.Text = "X"
  81. Exit.TextColor3 = Color3.new(1, 1, 1)
  82. Exit.TextScaled = true
  83. Exit.TextSize = 14
  84. Exit.TextWrapped = true
  85. Exit.MouseButton1Down:connect(function()
  86. MM2Jump:Destroy()
  87. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement