Advertisement
Scriptorz5

3D

May 16th, 2018
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. who = "atu1000"
  2. players = game:GetService('Players')
  3. plyr = players[who]
  4. char = plyr.Character
  5. pg = plyr.PlayerGui
  6.  
  7. pcall(function() pg.s3dgui:remove() end)
  8. local gui = Instance.new("ScreenGui", pg)
  9. gui.Name = "s3dgui"
  10.  
  11. local back = Instance.new("Frame", gui)
  12. back.Position = UDim2.new(0, 0, 0, 0)
  13. back.Size = UDim2.new(1.5, 0, 1.5, 0)
  14. back.BorderSizePixel = 0
  15. back.BackgroundColor = BrickColor.new("Really black")
  16. back.BackgroundTransparency = 1
  17. local id = Instance.new("TextLabel", back)
  18. id.Position = UDim2.new(0.375, 0, 0, 0)
  19. id.Size = UDim2.new(1.5, 0, 1.5, 0)
  20. id.BorderSizePixel = 0
  21. id.BackgroundColor3 = Color3.new(0.25, 0.25, 0.5)
  22. id.BackgroundTransparency = 0.05
  23. id.Text = ""
  24. local id2 = Instance.new("TextLabel", back)
  25. id2.Position = UDim2.new(0, 0, 0, 0)
  26. id2.Size = UDim2.new(0.375, 0, 1.5, 0)
  27. id2.BorderSizePixel = 0
  28. id2.BackgroundColor3 = Color3.new(0.75, 0.25, 0.25)
  29. id2.BackgroundTransparency = 0.05
  30. id2.Text = ""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement