Advertisement
sinkicol

lol

Dec 2nd, 2020
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. for i,v in pairs(workspace.NonGeometry:GetDescendants()) do
  2. if v:FindFirstChildOfClass("SurfaceGui") then
  3. -- Gui to Lua
  4. -- Version: 3.2
  5.  
  6. -- Instances:
  7.  
  8. local BillboardGui = Instance.new("BillboardGui")
  9. local TextLabel = Instance.new("TextLabel")
  10.  
  11. --Properties:
  12.  
  13. BillboardGui.Parent = v
  14. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15. BillboardGui.Active = true
  16. BillboardGui.AlwaysOnTop = true
  17. BillboardGui.LightInfluence = 1.000
  18. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  19. BillboardGui.StudsOffset = Vector3.new(0, 3, 0)
  20.  
  21. TextLabel.Parent = BillboardGui
  22. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  23. TextLabel.BackgroundTransparency = 1.000
  24. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  25. TextLabel.Font = Enum.Font.PermanentMarker
  26. TextLabel.Text = "ITS HERE"
  27. TextLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
  28. TextLabel.TextScaled = true
  29. TextLabel.TextSize = 14.000
  30. TextLabel.TextWrapped = true
  31. end
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement