Advertisement
Rainbow_Hornet

Identity Fraud (Working & Up to date)

Nov 10th, 2021
710
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. Sub to me if you liked the script! https://www.youtube.com/channel/UCSxUojftyb0LD-y9qJb9NUw
  2.  
  3.  
  4.  
  5. --[[
  6. RED = DOOR TO SECOND FLOOR
  7. GREEN = DOOR TO THIRD FLOOR
  8. BLUE = DOOR TO BOSS
  9. ]]
  10.  
  11. function createGui(parent,color)
  12. local billBoard = Instance.new("BillboardGui", parent)
  13. local gui = Instance.new("Frame", billBoard)
  14. gui.Size = UDim2.new(1,0,1,0)
  15. gui.BackgroundColor3 = color
  16.  
  17. billBoard.AlwaysOnTop = true
  18. billBoard.Size = UDim2.new(10,0,10,0)
  19. end
  20.  
  21. createGui(game.Workspace.Doors, Color3.new(1,0,0))
  22. createGui(game.Workspace["Second Door"], Color3.new(0,1,0))
  23. createGui(game.Workspace["Third Door"], Color3.new(0,0,1))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement