Facebook
From bruh , 4 Years ago, written in Lua.
Embed
Download Paste or View Raw
Hits: 404
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local LegoXUI = Instance.new("ScreenGui")
  5. local LegoXGUI = Instance.new("Frame")
  6. local Top = Instance.new("TextLabel")
  7. local Bottom = Instance.new("TextLabel")
  8. local input = Instance.new("TextBox")
  9. local Execute = Instance.new("TextButton")
  10. local Clear = Instance.new("TextButton")
  11. local Output = Instance.new("TextBox")
  12. local TextLabel = Instance.new("TextLabel")
  13. --Properties:
  14. LegoXUI.Name = "LegoXUI"
  15. LegoXUI.Parent = game.CoreGui
  16.  
  17. LegoXGUI.Name = "LegoXGUI"
  18. LegoXGUI.Parent = LegoXUI
  19. LegoXGUI.Active = true
  20. LegoXGUI.BackgroundColor3 = Color3.new(0.207843, 0.207843, 0.207843)
  21. LegoXGUI.BorderSizePixel = 0
  22. LegoXGUI.Position = UDim2.new(0.241978616, 0, 0.22381933, 0)
  23. LegoXGUI.Size = UDim2.new(0, 860, 0, 438)
  24. LegoXGUI.Draggable = true
  25.  
  26. Top.Name = "Top"
  27. Top.Parent = LegoXGUI
  28. Top.Active = true
  29. Top.BackgroundColor3 = Color3.new(0.415686, 0.415686, 0.415686)
  30. Top.BorderSizePixel = 0
  31. Top.Size = UDim2.new(0, 860, 0, 20)
  32. Top.Font = Enum.Font.SourceSans
  33. Top.Text = "LegoX"
  34. Top.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  35. Top.TextScaled = true
  36. Top.TextSize = 14
  37. Top.TextWrapped = true
  38.  
  39. Bottom.Name = "Bottom"
  40. Bottom.Parent = LegoXGUI
  41. Bottom.Active = true
  42. Bottom.BackgroundColor3 = Color3.new(0.415686, 0.415686, 0.415686)
  43. Bottom.BorderSizePixel = 0
  44. Bottom.Position = UDim2.new(0, 0, 0.952054799, 0)
  45. Bottom.Size = UDim2.new(0, 860, 0, 20)
  46. Bottom.Font = Enum.Font.SourceSans
  47. Bottom.Text = "Made by Ghostzz as a filler for another project i am working on (Protosmasher Lua, join disc for more details..)"
  48. Bottom.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  49. Bottom.TextScaled = true
  50. Bottom.TextSize = 14
  51. Bottom.TextWrapped = true
  52.  
  53. input.Name = "input"
  54. input.Parent = LegoXGUI
  55. input.BackgroundColor3 = Color3.new(0.329412, 0.329412, 0.329412)
  56. input.BorderSizePixel = 0
  57. input.Position = UDim2.new(0.0372093022, 0, 0.0958904102, 0)
  58. input.Size = UDim2.new(0, 707, 0, 317)
  59. input.Font = Enum.Font.SourceSans
  60. input.MultiLine = true
  61. input.Text = "hi"
  62. input.TextColor3 = Color3.new(1, 1, 1)
  63. input.TextSize = 15
  64. input.TextWrapped = true
  65. input.TextXAlignment = Enum.TextXAlignment.Left
  66. input.TextYAlignment = Enum.TextYAlignment.Top
  67.  
  68. Execute.Name = "Execute"
  69. Execute.Parent = LegoXGUI
  70. Execute.BackgroundColor3 = Color3.new(0.654902, 0.654902, 0.654902)
  71. Execute.BorderSizePixel = 0
  72. Execute.Position = UDim2.new(0.0255813971, 0, 0.844748735, 0)
  73. Execute.Size = UDim2.new(0, 175, 0, 26)
  74. Execute.Font = Enum.Font.SourceSansLight
  75. Execute.Text = "Execute"
  76. Execute.TextColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  77. Execute.TextScaled = true
  78. Execute.TextSize = 14
  79. Execute.TextWrapped = true
  80. Execute.MouseButton1Down:connect(function()
  81.         loadstring(input.Text)()
  82. end)
  83.  
  84. Clear.Name = "Clear"
  85. Clear.Parent = LegoXGUI
  86. Clear.BackgroundColor3 = Color3.new(0.654902, 0.654902, 0.654902)
  87. Clear.BorderSizePixel = 0
  88. Clear.Position = UDim2.new(0.302325577, 0, 0.844748735, 0)
  89. Clear.Size = UDim2.new(0, 175, 0, 26)
  90. Clear.Font = Enum.Font.SourceSansLight
  91. Clear.Text = "Clear Text"
  92. Clear.TextColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  93. Clear.TextScaled = true
  94. Clear.TextSize = 14
  95. Clear.TextWrapped = true
  96. Clear.MouseButton1Down:connect(function()
  97. input.Text = ("")
  98. end)
  99.  
  100. Output.Name = "Output"
  101. Output.Parent = LegoXGUI
  102. Output.BackgroundColor3 = Color3.new(0.329412, 0.329412, 0.329412)
  103. Output.BorderSizePixel = 0
  104. Output.Position = UDim2.new(0.874418616, 0, 0.141552448, 0)
  105. Output.Size = UDim2.new(0, 95, 0, 297)
  106. Output.Font = Enum.Font.Code
  107. Output.MultiLine = true
  108. Output.Text = "Output appears here!"
  109. Output.TextColor3 = Color3.new(0, 1, 0)
  110. Output.TextSize = 15
  111. Output.TextWrapped = true
  112. Output.TextXAlignment = Enum.TextXAlignment.Left
  113. Output.TextYAlignment = Enum.TextYAlignment.Top
  114. Execute.MouseButton1Down:connect(function()
  115. Output.Text = ("Executing...")
  116. Output.TextColor3 = Color3.new(0, 446, 0, 50)
  117. wait(1)
  118. Output.Text = ("Executing: loading script")
  119. Output.TextColor3 = Color3.new(0, 446, 0, 50)
  120. wait(1)
  121. Output.Text = ("Script executed! Make sure to join the discord! : ")
  122. Output.TextColor3 = Color3.new(0, 446, 0, 50)
  123. end)
  124.  
  125. TextLabel.Parent = LegoXGUI
  126. TextLabel.Active = true
  127. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  128. TextLabel.BackgroundTransparency = 0.64999997615814
  129. TextLabel.BorderSizePixel = 0
  130. TextLabel.Position = UDim2.new(0.874418616, 0, 0.0639269426, 0)
  131. TextLabel.Size = UDim2.new(0, 95, 0, 24)
  132. TextLabel.Font = Enum.Font.SourceSans
  133. TextLabel.Text = "Output"
  134. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  135. TextLabel.TextScaled = true
  136. TextLabel.TextSize = 14
  137. TextLabel.TextWrapped = true
  138. -- Scripts:
  139.  

Replies to LegoX rss

Title Name Language When
Re: LegoX Sludgy Dove lua 4 Years ago.