Advertisement
Rovo112

Sgui

Feb 18th, 2015
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. ---[[Surface Gui Testin]]---
  2. plr = game:GetService("Players").LocalPlayer
  3.  
  4. local screen = Instance.new("Part",workspace)--Will change to player
  5. screen.Anchored = true
  6. screen.CanCollide = false
  7. screen.Size = Vector3.new(15.6,13,0.2) --Come back
  8. screen.Transparency = .5
  9. screen.FormFactor = "Custom"
  10. screen.BrickColor=BrickColor.new('Really black')
  11. local sgui = Instance.new("SurfaceGui",screen)
  12. sgui.Face = "Front"
  13. local tb1 = Instance.new("TextBox",sgui)
  14. tb1.Size = UDim2.new(0, 200,0, 50)
  15. tb1.Font = "Legacy"
  16. tb1.FontSize = "24"
  17. tb1.Text = "</BlackCodeLua>"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement