Advertisement
frog2128

Untitled

Mar 15th, 2015
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. chr=plr.Character
  3. local ms = plr:GetMouse()
  4. CV="Bright red"
  5. chat = plr.Chatted:connect(function(chat)
  6.  
  7. local txt = Instance.new("BillboardGui", chr)
  8. txt.Adornee = chr.Head
  9. txt.Name = "_status"
  10. txt.Size = UDim2.new(4, 0, 2.5, 0)
  11. txt.StudsOffset = Vector3.new(-4, 2, 0)
  12. local text = Instance.new("TextLabel", txt)
  13. text.Size = UDim2.new(3, 0, 0.5, 0)
  14. text.FontSize = "Size18"
  15. text.TextScaled = true
  16. text.TextTransparency = 0
  17. text.BackgroundTransparency = 1
  18. text.TextTransparency = 0
  19. text.TextStrokeTransparency = 0
  20. text.Font = "SourceSansBold"
  21. text.TextStrokeColor3 = Color3.new(1,1,1)
  22.  
  23. v=Instance.new("Part")
  24. v.Name = "ColorBrick"
  25. v.Parent=plr.Character
  26. v.FormFactor="Symmetric"
  27. v.Anchored=true
  28. v.CanCollide=false
  29. v.BottomSurface="Smooth"
  30. v.TopSurface="Smooth"
  31. v.Size=Vector3.new(10,5,3)
  32. v.Transparency=0.7
  33. while wait() do
  34. v.CFrame=chr.Torso.CFrame
  35. v.BrickColor=BrickColor.new(CV)
  36. text.TextColor3 = v.BrickColor.Color
  37. v.Shape="Block"
  38. text.Text = "'Murica"
  39.  
  40. ms.KeyDown:connect(function(key)
  41. if string.lower(key) == "m" then
  42. while 1+1 == 2 do
  43. CV="Really red"
  44. wait(0.3)
  45. CV="White"
  46. wait(0.3)
  47. CV="Bright blue"
  48. wait(0.3)
  49. end
  50. elseif string.lower(key) == "n" then
  51. game.Players.LocalPlayer.Character._status:Destroy()
  52. game.Players.LocalPlayer.Character.ColorBrick:Destroy()
  53. end
  54. end)
  55. end
  56.  
  57. chat = plr.Chatted:connect(function(chat)
  58. plr = game.Players.LocalPlayer
  59. if chat:sub(1,7)=="America FK yeah!" then
  60. local s = Instance.new("Sound")
  61. s.Name = "fall"
  62. s.SoundId = "http://www.roblox.com/asset/?id=176387366"
  63. s.Volume = 1
  64. s.Looped = false
  65. s.archivable = false
  66. s.Parent = game.Workspace
  67. wait(0)
  68. s:play()
  69. wait(15)
  70. game.Workspace.fall:Destroy()
  71. end
  72. end)
  73. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement