Advertisement
frog2128

Untitled

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