Advertisement
Amokah

Untitled

May 5th, 2018
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. --[[
  2.  
  3.  
  4. Thank you for using my script
  5. and if you normaly use my scripts
  6. then thank you more! :D
  7. Chat Gui Created by: SirDerpzz! :D
  8. Dont remove these credits >.>
  9.  
  10. ]]--
  11.  
  12. wait(0.5)
  13. script.Parent = nil
  14. player=game.Players.LocalPlayer
  15. new=Instance.new
  16.  
  17. print("=)")
  18. part = new("Part", player.Character)
  19. part.Transparency = "1"
  20. part.CFrame = player.Character.Head.CFrame * CFrame.new(0,10,0)
  21. part.CanCollide = false
  22. part.Name = "_Block"
  23.  
  24. gui = new("ScreenGui", player.PlayerGui)
  25. gui.Name = "DCG"
  26. frame = new("Frame", player.PlayerGui.DCG)
  27. txtbox = new("TextBox", player.PlayerGui.DCG.Frame)
  28. txtbox.Text = "Chara"
  29. txtbox.Size = UDim2.new(0,200,0,50)
  30. txtbox.Position = UDim2.new(0,1175,0,619)
  31. billboard = new("BillboardGui", player.Character._Block)
  32. billboard.Name = "DCBG"
  33. billboard.AlwaysOnTop = true
  34. billboard.Size = UDim2.new(0,100,0,100)
  35. billboard.Active = true
  36. txt = new("TextLabel", player.Character._Block.DCBG)
  37. txt.BackgroundTransparency = "1"
  38. txt.Font = "SciFi"
  39. txt.Text = txtbox.Text
  40. txt.Active = true
  41. txt.FontSize = "Size60"
  42. txt.Size = UDim2.new(0,10,0,10)
  43. txt.Position = UDim2.new(0,50,0,0)
  44. txt.TextColor3 = Color3.new(255,255,255)
  45. weld = new("Weld", player.Character._Block)
  46. weld.Part0 = player.Character.Head
  47. weld.Part1 = player.Character._Block
  48.  
  49. while true do
  50. wait(0.1)
  51. if player.PlayerGui:FindFirstChild("DCG") == nil then
  52. gui = new("ScreenGui", player.PlayerGui)
  53. gui.Name = "DCG"
  54. frame = new("Frame", player.PlayerGui.DCG)
  55. txtbox = new("TextBox", player.PlayerGui.DCG.Frame)
  56. txtbox.Text = " "
  57. txtbox.Size = UDim2.new(0,200,0,50)
  58. txtbox.Position = UDim2.new(0,1175,0,619)
  59. end
  60. if player.Character:FindFirstChild("_Block") == nil then
  61. part = new("Part", player.Character)
  62. part.Transparency = "1"
  63. part.CFrame = player.Character.Head.CFrame * CFrame.new(0,10,0)
  64. part.CanCollide = false
  65. part.Name = "_Block"
  66. billboard = new("BillboardGui", player.Character._Block)
  67. billboard.Name = "DCBG"
  68. billboard.AlwaysOnTop = true
  69. billboard.Size = UDim2.new(0,100,0,100)
  70. billboard.Active = true
  71. txt = new("TextLabel", player.Character._Block.DCBG)
  72. txt.BackgroundTransparency = "1"
  73. txt.Font = "SciFi"
  74. txt.Text = txtbox.Text
  75. txt.Active = true
  76. txt.FontSize = "Size60"
  77. txt.Size = UDim2.new(0,10,0,10)
  78. txt.Position = UDim2.new(0,50,0,0)
  79. txt.TextColor3 = Color3.new(255,255,255)
  80. weld = new("Weld", player.Character._Block)
  81. weld.Part0 = player.Character.Head
  82. weld.Part1 = player.Character._Block
  83. end
  84. txt.Text = txtbox.Text
  85. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement