Advertisement
BlueberriezAndPie

GCD

Aug 24th, 2015
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. --Variables
  2. player = game.Players.BlueberriezAndPie
  3. bannedlist = { "T0tallyN0tATr0ll, l0lRek0tlol, TusKOr661" }
  4.  
  5. Instance.new("Tool",game.Workspace)
  6. Tool = game.Workspace.Tool
  7. Tool.Name = ("Display Monitor")
  8. dm = game.STarterPack.Display Monitor
  9. Body = game.Workspace.Body
  10. Screen = game.Workspace.Screen
  11.  
  12. --Color on the brick on entering
  13. function onPlayerAdded(bannedlist)
  14. Screen.BrickColor = ("Really red")
  15. wait(3)
  16. Screen.BrickColor = ("Lime green")
  17. end
  18.  
  19. --The parts that make up the Display Monitor
  20. Instance.new("Part",game.Workspace)
  21. game.part.Name = ("Body")
  22. Body.Parent = ("dm")
  23. Body.Anchored = true
  24. Body.Size = Vector3.new("1, 2, 3")
  25.  
  26. Instance.new("Part",game.Workspace)
  27. game.part.Name = ("Screen")
  28. Screen.Parent = ("dm")
  29. Screen.Anchored = true
  30. Screen.Size = Vector3.new("0.1, 2, 3")
  31.  
  32. local mw = Instance.new("ManualWeld")
  33. mw.Parent = Screen
  34. mw.Screen = Screen.Body
  35. mw.Body = Screen.Body
  36. mw.C0 = CFrame.new(0, 0, 6)*CFrame.new(0, -math.pi/5, 0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement