Advertisement
JasonHacks

ugly gui

Mar 1st, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.20 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Thingything = Instance.new("Frame")
  6. local MainUI = Instance.new("Frame")
  7. local Jumppower = Instance.new("TextBox")
  8. local SetJumppower = Instance.new("TextButton")
  9. local SetWalkSpeed = Instance.new("TextButton")
  10. local WalkSpeed = Instance.new("TextBox")
  11. local CtrlClickTP = Instance.new("TextButton")
  12. local X = Instance.new("TextButton")
  13. local Name = Instance.new("TextLabel")
  14. --Properties:
  15. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Thingything.Name = "Thingy thing"
  19. Thingything.Parent = ScreenGui
  20. Thingything.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  21. Thingything.BorderSizePixel = 0
  22. Thingything.Position = UDim2.new(0.0486798696, 0, 0.47584188, 0)
  23. Thingything.Size = UDim2.new(0, 200, 0, 33)
  24.  
  25. MainUI.Name = "MainUI"
  26. MainUI.Parent = Thingything
  27. MainUI.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  28. MainUI.BackgroundTransparency = 0.12999999523163
  29. MainUI.BorderSizePixel = 0
  30. MainUI.Position = UDim2.new(0, 0, 1, 0)
  31. MainUI.Size = UDim2.new(0, 200, 0, 115)
  32.  
  33. Jumppower.Name = "Jumppower"
  34. Jumppower.Parent = MainUI
  35. Jumppower.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  36. Jumppower.BorderSizePixel = 0
  37. Jumppower.Position = UDim2.new(0.0600000024, 0, 0.0819580704, 0)
  38. Jumppower.Size = UDim2.new(0, 67, 0, 22)
  39. Jumppower.Font = Enum.Font.SourceSansBold
  40. Jumppower.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  41. Jumppower.PlaceholderText = "NUMBER"
  42. Jumppower.Text = ""
  43. Jumppower.TextColor3 = Color3.new(1, 1, 1)
  44. Jumppower.TextSize = 14
  45.  
  46. SetJumppower.Name = "SetJumppower"
  47. SetJumppower.Parent = MainUI
  48. SetJumppower.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  49. SetJumppower.BorderSizePixel = 0
  50. SetJumppower.Position = UDim2.new(0.415000021, 0, 0.0819580704, 0)
  51. SetJumppower.Size = UDim2.new(0, 104, 0, 22)
  52. SetJumppower.Font = Enum.Font.SourceSansBold
  53. SetJumppower.Text = "Set JumpPower"
  54. SetJumppower.TextColor3 = Color3.new(1, 1, 1)
  55. SetJumppower.TextSize = 14
  56. SetJumppower.MouseButton1Click:connect(function()
  57. game.Players.LocalPlayer.Character.Humanoid.JumpPower = Jumppower.Text
  58. end)
  59.  
  60. SetWalkSpeed.Name = "SetWalkSpeed"
  61. SetWalkSpeed.Parent = MainUI
  62. SetWalkSpeed.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  63. SetWalkSpeed.BorderSizePixel = 0
  64. SetWalkSpeed.Position = UDim2.new(0.415000021, 0, 0.331045747, 0)
  65. SetWalkSpeed.Size = UDim2.new(0, 104, 0, 22)
  66. SetWalkSpeed.Font = Enum.Font.SourceSansBold
  67. SetWalkSpeed.Text = "Set WalkSpeed"
  68. SetWalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  69. SetWalkSpeed.TextSize = 14
  70. SetWalkSpeed.MouseButton1Click:connect(function()
  71. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = WalkSpeed.Text
  72. end)
  73.  
  74. WalkSpeed.Name = "WalkSpeed"
  75. WalkSpeed.Parent = MainUI
  76. WalkSpeed.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  77. WalkSpeed.BorderSizePixel = 0
  78. WalkSpeed.Position = UDim2.new(0.0600000024, 0, 0.331045747, 0)
  79. WalkSpeed.Size = UDim2.new(0, 67, 0, 22)
  80. WalkSpeed.Font = Enum.Font.SourceSansBold
  81. WalkSpeed.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  82. WalkSpeed.PlaceholderText = "NUMBER"
  83. WalkSpeed.Text = ""
  84. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  85. WalkSpeed.TextSize = 14
  86.  
  87. CtrlClickTP.Name = "CtrlClickTP"
  88. CtrlClickTP.Parent = MainUI
  89. CtrlClickTP.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  90. CtrlClickTP.BorderSizePixel = 0
  91. CtrlClickTP.Position = UDim2.new(0.0600000024, 0, 0.618797958, 0)
  92. CtrlClickTP.Size = UDim2.new(0, 175, 0, 30)
  93. CtrlClickTP.Font = Enum.Font.SourceSansBold
  94. CtrlClickTP.Text = "Press Z to tp"
  95. CtrlClickTP.TextColor3 = Color3.new(1, 1, 1)
  96. CtrlClickTP.TextSize = 14
  97. CtrlClickTP.MouseButton1Click:connect(function()
  98. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(k)
  99. if k == 'z' then
  100. game.Players.LocalPlayer.Character:MoveTo(game.Players.LocalPlayer:GetMouse().hit.p)
  101. end
  102. end)
  103. end)
  104.  
  105. X.Name = "X"
  106. X.BackgroundTransparency = 100
  107. X.Parent = Thingything
  108. X.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  109. X.BorderSizePixel = 0
  110. X.Position = UDim2.new(0.850000024, 0, 0, 0)
  111. X.Size = UDim2.new(0, 30, 0, 30)
  112. X.Font = Enum.Font.SourceSansBold
  113. X.Text = "X"
  114. X.TextColor3 = Color3.new(1, 1, 1)
  115. X.TextScaled = true
  116. X.TextSize = 14
  117. X.TextWrapped = true
  118. X.MouseButton1Click:connect(function()
  119. if MainUI.Visible == true then
  120. MainUI.Visible = false
  121. else
  122. MainUI.Visible = true
  123. end
  124. end)
  125.  
  126.  
  127. Name.Name = "Name"
  128. Name.Parent = Thingything
  129. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  130. Name.BackgroundTransparency = 1
  131. Name.BorderSizePixel = 0
  132. Name.Size = UDim2.new(0, 170, 0, 33)
  133. Name.Font = Enum.Font.SourceSansBold
  134. Name.Text = "Simple CMDS By MartinRages#0262"
  135. Name.TextColor3 = Color3.new(1, 1, 1)
  136. Name.TextScaled = true
  137. Name.TextSize = 14
  138. Name.TextWrapped = true
  139. -- Scripts:
  140. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  141. Text = "Simple gui by MartinRages#0262 i make all sorts of gui's you can request them too. Join my discord server for more script garbage https://discord.gg/uG85c5N";
  142. Font = Enum.Font.SourceSansBold;
  143. Color = Color3.new(184, 10, 13);
  144. FontSize = Enum.FontSize.Size60;
  145. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement