pastebinxx

Untitled

Oct 18th, 2025 (edited)
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. -- Only works in Studio (Plugin/Test Mode)
  2. local screenGui = Instance.new("ScreenGui")
  3. screenGui.Name = "BlackScreen"
  4. screenGui.IgnoreGuiInset = true
  5. screenGui.Parent = game:GetService("CoreGui")
  6.  
  7. local blackFrame = Instance.new("Frame")
  8. blackFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  9. blackFrame.BorderSizePixel = 0
  10. blackFrame.Size = UDim2.new(1, 0, 1, 0)
  11. blackFrame.Position = UDim2.new(0, 0, 0, 0)
  12. blackFrame.Parent = screenGui
  13.  
Advertisement
Add Comment
Please, Sign In to add comment