Advertisement
jasherton

I CAN DO ANYTHING

Feb 15th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. local part = Instance.new("Part")
  2. part.Anchored = true
  3. part.CanCollide = false
  4. part.Transparency = 1
  5. part.CFrame = CFrame.new(game.Players.crazy1755.Character.PrimaryPart.CFrame.p)*CFrame.Angles(0,math.rad(90),0)
  6. part.Size = Vector3.new(5, 5.5, 2)
  7. part.Parent = game.Workspace
  8.  
  9. local decal = Instance.new("Decal")
  10. decal.Texture = "rbxassetid://2790103116"
  11. decal.Parent = part
  12.  
  13. local decal = Instance.new("Decal")
  14. decal.Texture = "rbxassetid://2790103116"
  15. decal.Face = "Back"
  16. decal.Parent = part
  17.  
  18. local mesh = Instance.new("BlockMesh")
  19. mesh.Name = "mesh"
  20. mesh.Parent = part
  21.  
  22. local sound = Instance.new("Sound")
  23. sound.SoundId = "rbxassetid://2533880583"
  24. sound.Parent = part
  25. sound.MaxDistance = 121
  26. sound.Volume = 2
  27. sound.Looped = true
  28. sound:Play()
  29.  
  30. spawn(function()
  31. while part.Parent ~= nil do
  32. part.CFrame = part.CFrame*CFrame.Angles(0,0,-0.3)
  33. wait()
  34. part.CFrame = part.CFrame*CFrame.Angles(0,0,0.3)
  35. wait()
  36. part.CFrame = part.CFrame*CFrame.Angles(0,0,0.3)
  37. wait()
  38. part.CFrame = part.CFrame*CFrame.Angles(0,0,-0.3)
  39. end
  40. end)
  41.  
  42. spawn(function()
  43. while part.Parent ~= nil do
  44. math.randomseed(tick())
  45. wait(math.random(1,3))
  46. local msgs = {"CHAOS CHAOS","CATCH ME IF YOU CAN","SHALL WE PLAY THE RING-AROUND?","HA HA HA HA","I CAN DO ANYTHING"}
  47. local rand = msgs[math.random(1,#msgs)]
  48. game:GetService("Chat"):Chat(part,rand,Enum.ChatColor.White)
  49.  
  50. if rand == "CHAOS CHAOS" then
  51. local sound = Instance.new("Sound")
  52. sound.SoundId = "rbxassetid://2545008459"
  53. sound.Parent = part
  54. sound.EmitterSize = 20
  55. sound.MaxDistance = 121
  56. sound.Volume = 10
  57. sound:Play()
  58. sound.Ended:connect(function()
  59. sound:Destroy()
  60. end)
  61. elseif rand == "HA HA HA HA" then
  62. local sound = Instance.new("Sound")
  63. sound.SoundId = "rbxassetid://2545010175"
  64. sound.Parent = part
  65. sound.MaxDistance = 121
  66. sound.EmitterSize = 20
  67. sound.Volume = 10
  68. sound:Play()
  69. sound.Ended:connect(function()
  70. sound:Destroy()
  71. end)
  72. elseif rand == "I CAN DO ANYTHING" then
  73. local sound = Instance.new("Sound")
  74. sound.SoundId = "rbxassetid://2544975373"
  75. sound.Parent = part
  76. sound.MaxDistance = 121
  77. sound.EmitterSize = 20
  78. sound.Volume = 10
  79. sound:Play()
  80. sound.Ended:connect(function()
  81. sound:Destroy()
  82. end)
  83. end
  84.  
  85. end
  86. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement