Advertisement
Guest User

Untitled

a guest
Apr 11th, 2025
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | Source Code | 0 0
  1. local gui = Instance.new("ScreenGui")
  2.  
  3. gui.Name = "Stigma ultimate Beta"
  4.  
  5. gui.Parent = game.CoreGui
  6.  
  7.  
  8.  
  9. local Ui = Instance.new("Frame")
  10.  
  11. Ui.Size = UDim2.new(0.0, 550, 0.0, 355)
  12.  
  13. Ui.Position = UDim2.new(0.0, 0, 0.0, 0)
  14.  
  15. Ui.BackgroundColor3 = Color3.new(1, 1, 1)
  16.  
  17. Ui.BorderColor3 = Color3.new(0, 0, 0)
  18.  
  19. Ui.BorderSizePixel = 0
  20.  
  21. Ui.Active = true
  22.  
  23. Ui.BackgroundTransparency = 1
  24.  
  25. Ui.Draggable = true
  26.  
  27. Ui.Parent = gui
  28.  
  29.  
  30.  
  31. local image = Instance.new("ImageLabel")
  32.  
  33. image.Size = UDim2.new(0.0, 549, 0.0, 357)
  34.  
  35. image.Position = UDim2.new(0.0, 0, 0.0, 0)
  36.  
  37. image.BackgroundColor3 = Color3.new(0, 0, 0)
  38.  
  39. image.ImageColor3 = Color3.new(1, 1, 1)
  40.  
  41. image.Image = "rbxassetid://73303145092022"
  42.  
  43. image.ImageTransparency = 0
  44.  
  45. image.Parent = Ui
  46.  
  47.  
  48.  
  49.  
  50.  
  51. image.BackgroundTransparency = 1
  52.  
  53.  
  54.  
  55. local TextBox = Instance.new("TextBox")
  56.  
  57. TextBox.Size = UDim2.new(0.0, 369, 0.0, 210)
  58.  
  59. TextBox.Position = UDim2.new(0.0, 3, 0.0, 47)
  60.  
  61. TextBox.BackgroundColor3 = Color3.new(0, 0, 0)
  62.  
  63. TextBox.BorderColor3 = Color3.new(0, 0, 0)
  64.  
  65. TextBox.BorderSizePixel = 0
  66.  
  67. TextBox.Text = ""
  68.  
  69. TextBox.TextColor3 = Color3.new(0, 0, 0)
  70.  
  71. TextBox.BackgroundTransparency = 1
  72.  
  73. TextBox.Font = Enum.Font.Code
  74.  
  75. TextBox.TextSize = 19
  76.  
  77. TextBox.Parent = Ui
  78.  
  79. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  80.  
  81. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  82.  
  83. TextBox.ClearTextOnFocus = failed
  84.  
  85. TextBox.MultiLine = true
  86.  
  87. TextBox.TextWrapped = true
  88.  
  89.  
  90.  
  91. local exe = Instance.new("TextButton")
  92.  
  93. exe.Size = UDim2.new(0.0, 36, 0.0, 71)
  94.  
  95. exe.Position = UDim2.new(0.0, 387, 0.0, 47)
  96.  
  97. exe.BackgroundColor3 = Color3.new(0, 0, 0)
  98.  
  99. exe.BorderColor3 = Color3.new(0, 0, 0)
  100.  
  101. exe.BorderSizePixel = 0
  102.  
  103. exe.Text = ""
  104.  
  105. exe.BackgroundTransparency = 1
  106.  
  107. exe.TextColor3 = Color3.new(255, 255, 255)
  108.  
  109. exe.Font = Enum.Font.Code
  110.  
  111. exe.Parent = Ui
  112.  
  113. exe.MouseButton1Click:Connect(function()
  114.  
  115. assert(loadstring(TextBox.Text))()
  116.  
  117. end)
  118.  
  119.  
  120.  
  121. local clea = Instance.new("TextButton")
  122.  
  123. clea.Size = UDim2.new(0.0, 36, 0.0, 79)
  124.  
  125. clea.Position = UDim2.new(0.0, 387, 0.0, 120)
  126.  
  127. clea.BackgroundColor3 = Color3.new(0, 0, 0)
  128.  
  129. clea.BorderColor3 = Color3.new(0, 0, 0)
  130.  
  131. clea.BorderSizePixel = 0
  132.  
  133. clea.Text = ""
  134.  
  135. clea.BackgroundTransparency = 1
  136.  
  137. clea.TextColor3 = Color3.new(255, 255, 255)
  138.  
  139. clea.Font = Enum.Font.Code
  140.  
  141. clea.Parent = Ui
  142.  
  143. clea.MouseButton1Click:Connect(function()
  144.  
  145. TextBox.Text = ""
  146.  
  147. end)
  148.  
  149.  
  150.  
  151. local X = Instance.new("TextButton")
  152.  
  153. X.Size = UDim2.new(0.0, 29, 0.0, 19)
  154.  
  155. X.Position = UDim2.new(0.0, 518, 0.0, 0)
  156.  
  157. X.BackgroundColor3 = Color3.new(0, 0, 0)
  158.  
  159. X.BorderColor3 = Color3.new(0, 0, 0)
  160.  
  161. X.BorderSizePixel = 0
  162.  
  163. X.Text = ""
  164.  
  165. X.BackgroundTransparency = 1
  166.  
  167. X.TextColor3 = Color3.new(255, 255, 255)
  168.  
  169. X.Font = Enum.Font.Code
  170.  
  171. X.Parent = Ui
  172.  
  173. X.MouseButton1Click:Connect(function()
  174.  
  175. Ui:Remove()
  176.  
  177. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement