Guest User

Steal a brain rot script

a guest
Jun 8th, 2025
1,758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.32 KB | Gaming | 0 0
  1. -- Brain rot script (Improved GUI with Note)
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local UICorner = Instance.new("UICorner")
  5. local TopBar = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local MainFrame = Instance.new("Frame")
  8. local TextBox = Instance.new("TextBox")
  9. local TextBoxCorner = Instance.new("UICorner")
  10. local SubmitButton = Instance.new("TextButton")
  11. local SubmitCorner = Instance.new("UICorner")
  12. local GetKeyButton = Instance.new("TextButton")
  13. local GetKeyCorner = Instance.new("UICorner")
  14. local MessageLabel = Instance.new("TextLabel")
  15. local NoteLabel = Instance.new("TextLabel") -- New note label
  16.  
  17. -- ScreenGui Setup
  18. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. ScreenGui.Name = "KeySystemGui"
  20. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. -- Main Frame
  23. Frame.Parent = ScreenGui
  24. Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  25. Frame.BorderSizePixel = 0
  26. Frame.Position = UDim2.new(0.5, -175, 0.5, -125)
  27. Frame.Size = UDim2.new(0, 350, 0, 250)
  28. Frame.Active = true
  29. Frame.Draggable = true
  30.  
  31. -- Round Corners
  32. UICorner.Parent = Frame
  33. UICorner.CornerRadius = UDim.new(0, 8)
  34.  
  35. -- Top Bar
  36. TopBar.Parent = Frame
  37. TopBar.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  38. TopBar.BorderSizePixel = 0
  39. TopBar.Size = UDim2.new(1, 0, 0, 35)
  40.  
  41. -- Title
  42. Title.Parent = TopBar
  43. Title.BackgroundTransparency = 1
  44. Title.Position = UDim2.new(0, 10, 0, 0)
  45. Title.Size = UDim2.new(1, -40, 1, 0)
  46. Title.Font = Enum.Font.GothamBold
  47. Title.Text = "Brain Rot Script"
  48. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  49. Title.TextSize = 14
  50. Title.TextXAlignment = Enum.TextXAlignment.Left
  51.  
  52. -- Main Content Frame
  53. MainFrame.Parent = Frame
  54. MainFrame.BackgroundTransparency = 1
  55. MainFrame.Position = UDim2.new(0, 0, 0, 35)
  56. MainFrame.Size = UDim2.new(1, 0, 1, -35)
  57.  
  58. -- Text Box
  59. TextBox.Parent = MainFrame
  60. TextBox.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  61. TextBox.Position = UDim2.new(0.1, 0, 0.2, 0)
  62. TextBox.Size = UDim2.new(0.8, 0, 0, 35)
  63. TextBox.Font = Enum.Font.Gotham
  64. TextBox.PlaceholderText = "Enter key here..."
  65. TextBox.Text = ""
  66. TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  67. TextBox.TextSize = 14
  68. TextBox.ClearTextOnFocus = false
  69.  
  70. TextBoxCorner.Parent = TextBox
  71. TextBoxCorner.CornerRadius = UDim.new(0, 6)
  72.  
  73. -- Submit Button
  74. SubmitButton.Parent = MainFrame
  75. SubmitButton.BackgroundColor3 = Color3.fromRGB(80, 160, 80)
  76. SubmitButton.Position = UDim2.new(0.1, 0, 0.5, 0)
  77. SubmitButton.Size = UDim2.new(0.35, 0, 0, 35)
  78. SubmitButton.Font = Enum.Font.Gotham
  79. SubmitButton.Text = "SUBMIT"
  80. SubmitButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  81. SubmitButton.TextSize = 14
  82.  
  83. SubmitCorner.Parent = SubmitButton
  84. SubmitCorner.CornerRadius = UDim.new(0, 6)
  85.  
  86. -- Get Key Button
  87. GetKeyButton.Parent = MainFrame
  88. GetKeyButton.BackgroundColor3 = Color3.fromRGB(80, 80, 160)
  89. GetKeyButton.Position = UDim2.new(0.55, 0, 0.5, 0)
  90. GetKeyButton.Size = UDim2.new(0.35, 0, 0, 35)
  91. GetKeyButton.Font = Enum.Font.Gotham
  92. GetKeyButton.Text = "GET KEY"
  93. GetKeyButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  94. GetKeyButton.TextSize = 14
  95.  
  96. GetKeyCorner.Parent = GetKeyButton
  97. GetKeyCorner.CornerRadius = UDim.new(0, 6)
  98.  
  99. -- Message Label
  100. MessageLabel.Parent = MainFrame
  101. MessageLabel.BackgroundTransparency = 1
  102. MessageLabel.Position = UDim2.new(0.1, 0, 0.75, 0)
  103. MessageLabel.Size = UDim2.new(0.8, 0, 0, 40)
  104. MessageLabel.Font = Enum.Font.Gotham
  105. MessageLabel.Text = ""
  106. MessageLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  107. MessageLabel.TextSize = 14
  108. MessageLabel.TextWrapped = true
  109.  
  110. -- New Note Label
  111. NoteLabel.Parent = MainFrame
  112. NoteLabel.BackgroundTransparency = 1
  113. NoteLabel.Position = UDim2.new(0.1, 0, 0.65, 0) -- Positioned between buttons and message
  114. NoteLabel.Size = UDim2.new(0.8, 0, 0, 20)
  115. NoteLabel.Font = Enum.Font.Gotham
  116. NoteLabel.Text = "🔑 Key is needed only once"
  117. NoteLabel.TextColor3 = Color3.fromRGB(180, 180, 180) -- Subtle gray color
  118. NoteLabel.TextSize = 12
  119. NoteLabel.TextWrapped = true
  120.  
  121. -- Original Functions (unchanged)
  122. local function loadMainScript()
  123. Frame:Destroy()
  124. loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/main/StealaBrainrot"))()
  125. end
  126.  
  127. SubmitButton.MouseButton1Click:Connect(function()
  128. if TextBox.Text:lower() == "notezzboy best" then
  129. MessageLabel.TextColor3 = Color3.fromRGB(100, 255, 100)
  130. MessageLabel.Text = "✓ Key correct! Loading script..."
  131. task.wait(1)
  132. loadMainScript()
  133. else
  134. MessageLabel.TextColor3 = Color3.fromRGB(255, 100, 100)
  135. MessageLabel.Text = "✗ Wrong key! Please try again or get a key."
  136. end
  137. end)
  138.  
  139. GetKeyButton.MouseButton1Click:Connect(function()
  140. local keyLink = "https://link-hub.net/1188078/sxWqky68YvQC"
  141.  
  142. local copied = false
  143. local clipboard = setclipboard or writeclipboard or toclipboard or (Clipboard and Clipboard.set)
  144.  
  145. if clipboard then
  146. pcall(clipboard, keyLink)
  147. copied = true
  148. end
  149.  
  150. if copied then
  151. MessageLabel.TextColor3 = Color3.fromRGB(100, 180, 255)
  152. MessageLabel.Text = "✓ Key link copied to clipboard!"
  153. else
  154. MessageLabel.TextColor3 = Color3.fromRGB(255, 150, 100)
  155. MessageLabel.Text = "✗ Failed to copy! Here's the link:\n"..keyLink
  156. end
  157.  
  158. task.wait(2)
  159. if copied then MessageLabel.Text = "" end
  160. end)
Advertisement
Add Comment
Please, Sign In to add comment