Advertisement
frog2128

Untitled

Mar 14th, 2015
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. plr=game:service'Players'.LocalPlayer
  2. chr=plr.Character
  3. local ms = plr:GetMouse()
  4. CV="Bright red"
  5.  
  6. local txt = Instance.new("BillboardGui", chr)
  7. txt.Adornee = chr.Head
  8. txt.Name = "_status"
  9. txt.Size = UDim2.new(4, 0, 2.5, 0)
  10. txt.StudsOffset = Vector3.new(-4, 2, 0)
  11. local text = Instance.new("TextLabel", txt)
  12. text.Size = UDim2.new(3, 0, 0.5, 0)
  13. text.FontSize = "Size18"
  14. text.TextScaled = true
  15. text.TextTransparency = 0
  16. text.BackgroundTransparency = 1
  17. text.TextTransparency = 0
  18. text.TextStrokeTransparency = 0
  19. text.Font = "SourceSansBold"
  20. text.TextStrokeColor3 = Color3.new(1,1,1)
  21.  
  22. v=Instance.new("Part")
  23. v.Name = "ColorBrick"
  24. v.Parent=plr.Character
  25. v.FormFactor="Symmetric"
  26. v.Anchored=true
  27. v.CanCollide=false
  28. v.BottomSurface="Smooth"
  29. v.TopSurface="Smooth"
  30. v.Size=Vector3.new(4,5,3)
  31. v.Transparency=0.7
  32. while wait() do
  33. v.CFrame=chr.Torso.CFrame
  34. v.BrickColor=BrickColor.new(CV)
  35. text.TextColor3 = v.BrickColor.Color
  36. v.Shape="Block"
  37. text.Text = "'Murica"
  38.  
  39. ms.KeyDown:connect(function(key)
  40. if string.lower(key) == "m" then
  41. while 1+1 == 2 do
  42. CV="Really red"
  43. wait(0.3)
  44. CV="White"
  45. wait(0.3)
  46. CV="Bright blue"
  47. wait(0.3)
  48. end
  49. elseif string.lower(key) == "n" then
  50. game.Players.LocalPlayer.Character._status:Destroy()
  51. game.Players.LocalPlayer.Character.ColorBrick:Destroy()
  52. end
  53. end)
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement