Advertisement
noober662

solara ui remake

Jun 12th, 2024 (edited)
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.13 KB | None | 0 0
  1. game.ServerScriptService.LoadingStringEnabled = true
  2. local Instances = {
  3.     ScreenGui = Instance.new("ScreenGui"),
  4.     SolaraRemake = Instance.new("Frame"),
  5.     TextBox = Instance.new("TextBox"),
  6.     Execute = Instance.new("TextButton"),
  7.     Inject = Instance.new("TextButton"),
  8.     TextLabel = Instance.new("TextLabel"),
  9. }
  10.  
  11. Instances.ScreenGui.Name = "ScreenGui"
  12. Instances.ScreenGui.Parent = game.StarterGui
  13.  
  14. Instances.SolaraRemake.Name = "SolaraRemake"
  15. Instances.SolaraRemake.Parent = Instances.ScreenGui
  16. Instances.SolaraRemake.Size = UDim2.new(0, 635, 0, 304)
  17. Instances.SolaraRemake.BorderColor3 = Color3.fromRGB(0, 0, 0)
  18. Instances.SolaraRemake.BackgroundTransparency = 0.20000000298023224
  19. Instances.SolaraRemake.Position = UDim2.new(0.197740108, 0, 0.150124073, 0)
  20. Instances.SolaraRemake.BorderSizePixel = 0
  21. Instances.SolaraRemake.BackgroundColor3 = Color3.fromRGB(20, 0, 40)
  22. SolaraRemake.Active = true
  23. SolaraRemake.Draggable = true
  24. Instances.TextBox.Name = "TextBox"
  25. Instances.TextBox.Parent = Instances.SolaraRemake
  26. Instances.TextBox.Size = UDim2.new(0, 584, 0, 221)
  27. Instances.TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0)
  28. Instances.TextBox.BackgroundTransparency = 0.44999998807907104
  29. Instances.TextBox.Position = UDim2.new(0.0456692912, 0, 0.115131579, 0)
  30. Instances.TextBox.BorderSizePixel = 0
  31. Instances.TextBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  32. Instances.TextBox.CursorPosition = -1
  33. Instances.TextBox.TextDirection = Enum.TextDirection.LeftToRight
  34. Instances.TextBox.TextSize = 32
  35. Instances.TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  36. Instances.TextBox.TextYAlignment = Enum.TextYAlignment.Top
  37. Instances.TextBox.Text = "Solara Remake"
  38. Instances.TextBox.TextWrapped = true
  39. Instances.TextBox.FontFace = Font.new("rbxasset://fonts/families/SourceSansPro.json", Enum.FontWeight.Regular, Enum.FontStyle.Normal)
  40. Instances.TextBox.TextXAlignment = Enum.TextXAlignment.Left
  41. Instances.TextBox.ClearTextOnFocus = false
  42.  
  43. Instances.Execute.Name = "Execute"
  44. Instances.Execute.Parent = Instances.TextBox
  45. Instances.Execute.Size = UDim2.new(0, 47, 0, 36)
  46. Instances.Execute.BorderColor3 = Color3.fromRGB(0, 0, 0)
  47. Instances.Execute.Position = UDim2.new(0, 0, 1.03619909, 0)
  48. Instances.Execute.BorderSizePixel = 0
  49. Instances.Execute.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  50. Instances.Execute.TextColor3 = Color3.fromRGB(0, 0, 0)
  51. Instances.Execute.Text = "▶"
  52. Instances.Execute.TextSize = 14
  53. Instances.Execute.FontFace = Font.new("rbxasset://fonts/families/SourceSansPro.json", Enum.FontWeight.Regular, Enum.FontStyle.Normal)
  54.  
  55. Instances.Inject.Name = "Inject"
  56. Instances.Inject.Parent = Instances.TextBox
  57. Instances.Inject.Size = UDim2.new(0, 47, 0, 36)
  58. Instances.Inject.BorderColor3 = Color3.fromRGB(0, 0, 0)
  59. Instances.Inject.Position = UDim2.new(0.104452051, 0, 1.03619909, 0)
  60. Instances.Inject.BorderSizePixel = 0
  61. Instances.Inject.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  62. Instances.Inject.TextColor3 = Color3.fromRGB(0, 0, 0)
  63. Instances.Inject.Text = "❗"
  64. Instances.Inject.TextSize = 14
  65. Instances.Inject.FontFace = Font.new("rbxasset://fonts/families/SourceSansPro.json", Enum.FontWeight.Regular, Enum.FontStyle.Normal)
  66.  
  67. Instances.TextLabel.Name = "TextLabel"
  68. Instances.TextLabel.Parent = Instances.SolaraRemake
  69. Instances.TextLabel.Size = UDim2.new(0, 200, 0, 35)
  70. Instances.TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  71. Instances.TextLabel.BackgroundTransparency = 1
  72. Instances.TextLabel.Position = UDim2.new(0.0115559734, 0, -0.00119169138, 0)
  73. Instances.TextLabel.BorderSizePixel = 0
  74. Instances.TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  75. Instances.TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  76. Instances.TextLabel.Text = "Solara"
  77. Instances.TextLabel.TextWrapped = true
  78. Instances.TextLabel.TextSize = 14
  79. Instances.TextLabel.FontFace = Font.new("rbxasset://fonts/families/SourceSansPro.json", Enum.FontWeight.Regular, Enum.FontStyle.Normal)
  80. Instances.TextLabel.TextScaled = true
  81.  
  82. -- Function "ExeScipt"
  83. (function()
  84.     local script = Instance.new("LocalScript", Instances.Execute)
  85.     local scriptiscool = script.Parent
  86.     scriptiscool.MouseButton1Click:Connect(function ()
  87.         loadstring(TextBox.Text)()
  88.     end)
  89. end)()
  90.  
  91.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement