Advertisement
GoldCraftingHD

Blackscreen

Jul 24th, 2021
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. --Blackscreen on your Display--
  2. --Made by xGoldgamer2j--
  3.  
  4.  
  5. -- Gui to Lua
  6. -- Version: 3.2
  7.  
  8. -- Instances:
  9.  
  10. local BlackScreen = Instance.new("ScreenGui")
  11. local Frame = Instance.new("Frame")
  12. local TextLabel = Instance.new("TextLabel")
  13.  
  14. --Properties:
  15.  
  16. BlackScreen.Name = "BlackScreen"
  17. BlackScreen.Parent = game.Workspace
  18. BlackScreen.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. Frame.Parent = BlackScreen
  21. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  22. Frame.Size = UDim2.new(0, 1600, 0, 754)
  23.  
  24. TextLabel.Parent = Frame
  25. TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  26. TextLabel.Size = UDim2.new(0, 1600, 0, 754)
  27. TextLabel.Font = Enum.Font.SourceSans
  28. TextLabel.Text = "Sie wurden gefeuert!!!"
  29. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  30. TextLabel.TextSize = 99.000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement