Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.60 KB | None | 0 0
  1. --[[
  2. Gui to Lua Converter
  3. -- Revamped by:HoIyScript
  4. --]]
  5.  
  6.  
  7.  
  8. -- Instances:
  9.  
  10. local ScreenGui = Instance.new("ScreenGui")
  11. local Main = Instance.new("Frame")
  12. local Group1 = Instance.new("Frame")
  13. local Load = Instance.new("TextButton")
  14. local Loadstring = Instance.new("TextBox")
  15. local WalkSpeed = Instance.new("TextButton")
  16. local ws = Instance.new("TextBox")
  17. local jp = Instance.new("TextBox")
  18. local JumpPower = Instance.new("TextButton")
  19. local Group1_2 = Instance.new("TextButton")
  20. local Group2 = Instance.new("TextButton")
  21. local Group3 = Instance.new("TextButton")
  22. local Group3_2 = Instance.new("TextButton")
  23.  
  24. --[[
  25. Properties:
  26. --]]
  27.  
  28. ScreenGui.Parent = game.CoreGui
  29. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  30.  
  31. Main.Name = "Main"
  32. Main.Parent = ScreenGui
  33. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  34. Main.Position = UDim2.new(0.251159191, 0, 0.239795923, 0)
  35. Main.Size = UDim2.new(0, 578, 0, 349)
  36. Main.Active = true
  37. Main.Draggable = true
  38.  
  39. Group1.Name = "Group1"
  40. Group1.Parent = Main
  41. Group1.BackgroundColor3 = Color3.new(0, 0, 0)
  42. Group1.Position = UDim2.new(-0.00128372968, 0, 0.196815997, 0)
  43. Group1.Size = UDim2.new(0, 576, 0, 280)
  44. Group1.Visible = false
  45.  
  46. Load.Name = "Load"
  47. Load.Parent = Group1
  48. Load.BackgroundColor3 = Color3.new(0.498039, 0.498039, 0.498039)
  49. Load.Position = UDim2.new(0.811074913, 0, 0.832142889, 0)
  50. Load.Size = UDim2.new(0, 98, 0, 35)
  51. Load.Font = Enum.Font.Cartoon
  52. Load.Text = "Load"
  53. Load.TextColor3 = Color3.new(0, 0, 0)
  54. Load.TextScaled = true
  55. Load.TextSize = 14
  56. Load.TextWrapped = true
  57. Load.MouseButton1Click:Connect(function()
  58. loadstring(game:HttpGet(Loadstring, true))()
  59. end)
  60.  
  61. Loadstring.Name = "Loadstring"
  62. Loadstring.Parent = Group1
  63. Loadstring.BackgroundColor3 = Color3.new(1, 1, 1)
  64. Loadstring.Position = UDim2.new(0.444625407, 0, 0.83214283, 0)
  65. Loadstring.Size = UDim2.new(0, 198, 0, 35)
  66. Loadstring.ClearTextOnFocus = false
  67. Loadstring.Font = Enum.Font.Cartoon
  68. Loadstring.PlaceholderText = "Raw Link Here"
  69. Loadstring.Text = ""
  70. Loadstring.TextColor3 = Color3.new(0, 0, 0)
  71. Loadstring.TextScaled = true
  72. Loadstring.TextSize = 14
  73. Loadstring.TextWrapped = true
  74.  
  75. WalkSpeed.Name = "WalkSpeed"
  76. WalkSpeed.Parent = Group1
  77. WalkSpeed.BackgroundColor3 = Color3.new(0.498039, 0.498039, 0.498039)
  78. WalkSpeed.Position = UDim2.new(0.0309446249, 0, 0.0571429096, 0)
  79. WalkSpeed.Size = UDim2.new(0, 139, 0, 35)
  80. WalkSpeed.Font = Enum.Font.Cartoon
  81. WalkSpeed.Text = "Walkspeed"
  82. WalkSpeed.TextColor3 = Color3.new(0, 0, 0)
  83. WalkSpeed.TextScaled = true
  84. WalkSpeed.TextSize = 14
  85. WalkSpeed.TextWrapped = true
  86. WalkSpeed.MouseButton1Click:Connect(function()
  87. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(ws.Text)
  88. end)
  89.  
  90. ws.Name = "ws"
  91. ws.Parent = Group1
  92. ws.BackgroundColor3 = Color3.new(1, 1, 1)
  93. ws.Position = UDim2.new(0.291530937, 0, 0.0571428575, 0)
  94. ws.Size = UDim2.new(0, 149, 0, 35)
  95. ws.ClearTextOnFocus = false
  96. ws.Font = Enum.Font.Cartoon
  97. ws.PlaceholderText = "Walkspeed Here"
  98. ws.Text = ""
  99. ws.TextColor3 = Color3.new(0, 0, 0)
  100. ws.TextScaled = true
  101. ws.TextSize = 14
  102. ws.TextWrapped = true
  103.  
  104. jp.Name = "jp"
  105. jp.Parent = Group1
  106. jp.BackgroundColor3 = Color3.new(1, 1, 1)
  107. jp.Position = UDim2.new(0.765973032, 0, 0.0571428575, 0)
  108. jp.Size = UDim2.new(0, 116, 0, 35)
  109. jp.ClearTextOnFocus = false
  110. jp.Font = Enum.Font.Cartoon
  111. jp.PlaceholderText = "Jumpower Here"
  112. jp.Text = ""
  113. jp.TextColor3 = Color3.new(0, 0, 0)
  114. jp.TextScaled = true
  115. jp.TextSize = 14
  116. jp.TextWrapped = true
  117.  
  118. JumpPower.Name = "JumpPower"
  119. JumpPower.Parent = Group1
  120. JumpPower.BackgroundColor3 = Color3.new(0.498039, 0.498039, 0.498039)
  121. JumpPower.Position = UDim2.new(0.561889231, 0, 0.0571429133, 0)
  122. JumpPower.Size = UDim2.new(0, 108, 0, 35)
  123. JumpPower.Font = Enum.Font.Cartoon
  124. JumpPower.Text = "Jumpower"
  125. JumpPower.TextColor3 = Color3.new(0, 0, 0)
  126. JumpPower.TextScaled = true
  127. JumpPower.TextSize = 14
  128. JumpPower.TextWrapped = true
  129. JumpPower.MouseButton1Click:Connect(function()
  130. game.Workspace.Gravity = game.Workspace.Gravity - tonumber(jp.Text)
  131. end)
  132. Group1_2.Name = "Group1"
  133. Group1_2.Parent = Main
  134. Group1_2.BackgroundColor3 = Color3.new(0.498039, 0.498039, 0.498039)
  135. Group1_2.Position = UDim2.new(-5.27985797e-08, 0, 0.0957532302, 0)
  136. Group1_2.Size = UDim2.new(0, 144, 0, 35)
  137. Group1_2.Font = Enum.Font.Cartoon
  138. Group1_2.Text = "Commands & Execution"
  139. Group1_2.TextColor3 = Color3.new(0, 0, 0)
  140. Group1_2.TextScaled = true
  141. Group1_2.TextSize = 14
  142. Group1_2.TextWrapped = true
  143. Group1_2.MouseButton1Click:Connect(function()
  144. Group1.Visible = true
  145. end)
  146. Group2.Name = "Group2"
  147. Group2.Parent = Main
  148. Group2.BackgroundColor3 = Color3.new(0.498039, 0.498039, 0.498039)
  149. Group2.Position = UDim2.new(0.244908318, 0, 0.0957532302, 0)
  150. Group2.Size = UDim2.new(0, 144, 0, 35)
  151. Group2.Font = Enum.Font.Cartoon
  152. Group2.Text = ""
  153. Group2.TextColor3 = Color3.new(0, 0, 0)
  154. Group2.TextScaled = true
  155. Group2.TextSize = 14
  156. Group2.TextWrapped = true
  157.  
  158. Group3.Name = "Group3"
  159. Group3.Parent = Maina
  160. Group3.BackgroundColor3 = Color3.new(0.498039, 0.498039, 0.498039)
  161. Group3.Position = UDim2.new(0.495006949, 0, 0.0957532302, 0)
  162. Group3.Size = UDim2.new(0, 144, 0, 35)
  163. Group3.Font = Enum.Font.Cartoon
  164. Group3.Text = ""
  165. Group3.TextColor3 = Color3.new(0, 0, 0)
  166. Group3.TextScaled = true
  167. Group3.TextSize = 14
  168. Group3.TextWrapped = true
  169.  
  170. Group3_2.Name = "Group3"
  171. Group3_2.Parent = Main
  172. Group3_2.BackgroundColor3 = Color3.new(0.498039, 0.498039, 0.498039)
  173. Group3_2.Position = UDim2.new(0.745105565, 0, 0.0957532302, 0)
  174. Group3_2.Size = UDim2.new(0, 144, 0, 35)
  175. Group3_2.Font = Enum.Font.Cartoon
  176. Group3_2.Text = ""
  177. Group3_2.TextColor3 = Color3.new(0, 0, 0)
  178. Group3_2.TextScaled = true
  179. Group3_2.TextSize = 14
  180. Group3_2.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement