Advertisement
frog2128

Untitled

Mar 15th, 2015
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 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.  
  24.  
  25. ms.KeyDown:connect(function(key)
  26. if string.lower(key) == "m" then
  27. while 1+1 == 2 do
  28. CV="Really red"
  29. wait(0.3)
  30. CV="White"
  31. wait(0.3)
  32. CV="Bright blue"
  33. wait(0.3)
  34. end
  35. elseif string.lower(key) == "n" then
  36. game.Players.LocalPlayer.Character._status:Destroy()
  37. game.Players.LocalPlayer.Character.ColorBrick:Destroy()
  38. end
  39. end)
  40. end)
  41.  
  42. chat = plr.Chatted:connect(function(chat)
  43. plr = game.Players.LocalPlayer
  44. if chat:sub(1,7)=="America FK yeah!" then
  45. local s = Instance.new("Sound")
  46. s.Name = "fall"
  47. s.SoundId = "http://www.roblox.com/asset/?id=176387366"
  48. s.Volume = 1
  49. s.Looped = false
  50. s.archivable = false
  51. s.Parent = game.Workspace
  52. wait(0)
  53. s:play()
  54. wait(120)
  55. game.Workspace.fall:Destroy()
  56. end
  57. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement