Advertisement
Migas3456

Kazoo Kid V2

Nov 30th, 2017
597
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.06 KB | None | 0 0
  1. --KAZOO KID! created by: Kidd_Anonymouse#9926 enjoy the script, Q to shoot your Kazoo cannons
  2. --Edited By Migas3456#6402
  3. local player = game.Players.LocalPlayer
  4. local char = player.Character
  5. local head = char.Head
  6. local To = char.Torso
  7. local HRP = char.HumanoidRootPart
  8. local RA = char["Right Arm"]
  9. local LA = char["Left Arm"]
  10. local RL = char["Right Leg"]
  11. local LL = char["Left Leg"]
  12. local Hum = char:FindFirstChildOfClass("Humanoid")
  13. local mouse = player:GetMouse()
  14. --game:service'InsertService':LoadAsset(14030252):children()[1].Parent=char
  15. --game:GetObjects("rbxassetid://857556803")[1].Parent=char
  16. for i = 5,1,-1 do
  17. if char:FindFirstChildOfClass("Accessory") ~= nil then char:FindFirstChildOfClass("Accessory"):remove()end
  18. end
  19. char:WaitForChild("Animate").walk.WalkAnim.AnimationId = "http://www.roblox.com/Asset?ID=252557606"
  20. ------------------------------------------------------------------------------------------
  21. ------------------------------------------------------------------------------------------
  22. ------------------------------------------------------------------------------------------
  23. ------------------------------------------------------------------------------------------
  24. --game:GetObjects("rbxassetid://857556803")[1].Parent=char
  25. ------------------------------------------------------------------------------------------
  26. ------------------------------------------------------------------------------------------
  27. ------------------------------------------------------------------------------------------
  28. ------------------------------------------------------------------------------------------
  29.  
  30. local m = Instance.new("Model",char)
  31.  
  32. local s1 = Instance.new("Sound",char)
  33. s1.SoundId = "rbxassetid://379250303"
  34. s1.Volume = 0.5
  35. s1.Looped = true
  36. s1:Play()
  37.  
  38.  
  39. if head:FindFirstChild("face")== nil then
  40. local d = Instance.new("Decal",head)
  41. d.Texture = "rbxassetid://664468442"
  42. d.Face = "Front"
  43. else
  44. head:FindFirstChild("face").Texture = "rbxassetid://664468442"
  45. end
  46.  
  47. if char:FindFirstChildOfClass("Shirt")== nil then
  48. local s = Instance.new("Shirt",char)
  49. s.ShirtTemplate = "rbxassetid://762916834"
  50. else
  51. char:FindFirstChildOfClass("Shirt").ShirtTemplate = "rbxassetid://762916834"
  52. end
  53.  
  54. if char:FindFirstChildOfClass("Pants")== nil then
  55. local s = Instance.new("Pants",char)
  56. s.PantsTemplate = "rbxassetid://843263078"
  57. else
  58. char:FindFirstChildOfClass("Pants").PantsTemplate = "rbxassetid://843263078"
  59. end
  60.  
  61. local hair = Instance.new("Part",char)
  62. hair.Name = "Hair"
  63. hair.CanCollide = false
  64. hair.Size = Vector3.new(1.2, 1, 1.6)
  65. hair.BrickColor = BrickColor.new("New Yeller")
  66. local hairmesh = Instance.new("SpecialMesh",hair)
  67. hairmesh.MeshId = "http://www.roblox.com/asset/?id=13332444"
  68. hairmesh.TextureId = "http://www.roblox.com/asset/?id=13693099"
  69. hairmesh.Scale = Vector3.new(1.05,1,1.05)
  70. hairmesh.VertexColor = Vector3.new(1, 1, 1)
  71. local hairweld = Instance.new("Weld",hair)
  72. hairweld.Part0 = head
  73. hairweld.Part1 = hair
  74. hairweld.C0 = CFrame.new(0,0.3,0)
  75.  
  76. char:WaitForChild("Body Colors").HeadColor = BrickColor.new("Pastel brown")
  77. char:WaitForChild("Body Colors").LeftArmColor = BrickColor.new("Pastel brown")
  78. char:WaitForChild("Body Colors").LeftLegColor = BrickColor.new("Pastel brown")
  79. char:WaitForChild("Body Colors").RightArmColor = BrickColor.new("Pastel brown")
  80. char:WaitForChild("Body Colors").RightLegColor = BrickColor.new("Pastel brown")
  81. char:WaitForChild("Body Colors").TorsoColor = BrickColor.new("Pastel brown")
  82.  
  83.  
  84. Hum.WalkSpeed = 100
  85. Hum.JumpPower = 100
  86. --[[
  87. head:WaitForChild("Jumping")
  88. head.Jumping.SoundId = "rbxassetid://151681170"
  89. head.Jumping.Volume = 3
  90. --]]
  91.  
  92.  
  93. local MousePart = Instance.new("Part",m)
  94. MousePart.CanCollide = false
  95. MousePart.BottomSurface = "Smooth"
  96. MousePart.TopSurface = "Smooth"
  97. MousePart.Size = Vector3.new(0.2, 0.2, 0.2)
  98. MousePart.Anchored = true
  99.  
  100.  
  101.  
  102. function despawn1(part1,part2,length)
  103.  
  104. for i = 10,1,-1 do
  105.  
  106. part1.Transparency = part1.Transparency + 0.1
  107. part1.Size = part1.Size + Vector3.new(0.2,0.2,length)
  108. part1.Size = Vector3.new(part1.Size.X,part1.Size.Y,length)
  109.  
  110. wait(0.01)
  111. end
  112. part1:remove()
  113.  
  114. for i = 10,1,-1 do
  115.  
  116. part2.Transparency = part2.Transparency + 0.1
  117.  
  118. wait(0.01)
  119. end
  120. part2:remove()
  121.  
  122. end
  123.  
  124.  
  125.  
  126. function despawn2(part1,length)
  127.  
  128. for i = 10,1,-1 do
  129.  
  130. part1.Transparency = part1.Transparency + 0.1
  131. part1.Size = part1.Size + Vector3.new(0.2,0,length)
  132. part1.Size = Vector3.new(part1.Size.X,part1.Size.Y,length)
  133.  
  134. wait(0.01)
  135. end
  136. part1:remove()
  137. end
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148. function snipe(T)
  149.  
  150. local part = Instance.new("Part", m)
  151. part.Parent = m
  152. part.Name = "Sniper"
  153. part.BottomSurface = 0
  154. part.TopSurface = 0
  155. part.BrickColor = BrickColor.new("Shamrock")
  156. part.FormFactor = "Custom"
  157. part.Size = Vector3.new(1, 1, 3)
  158. part.Anchored = true
  159. part.Locked = true
  160. part.CanCollide = false
  161. part.Transparency = 0
  162.  
  163. local S=part
  164.  
  165. part.Position = char.Torso.Position + Vector3.new(math.random(-5,5),math.random(3,8),math.random(-5,5))
  166. part.CFrame = CFrame.new(part.Position,T.Position)
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173. obj = part
  174. local lastPos = obj.CFrame.p
  175. objC = obj:Clone()
  176. wait(0.05)
  177. objC.Parent = part
  178. objC.FormFactor = "Custom"
  179. objC.Anchored = true
  180. objC.BrickColor = BrickColor.new("New Yeller")
  181. local distance = (T.Position- obj.CFrame.p).magnitude
  182. objC.Size = Vector3.new(0.2,0.2,distance)
  183. objC.CFrame = CFrame.new(T.Position,obj.Position)*CFrame.new(0,0,-distance/2)
  184. local s = Instance.new("Sound",part)
  185. s.SoundId = "rbxassetid://441874008"
  186. s.Volume = 1
  187. s.TimePosition = math.random(15,30)
  188. s:Play()
  189. despawn1(objC,part,distance)
  190. if mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil then
  191. mouse.Target.Parent:FindFirstChildOfClass("Humanoid"):TakeDamage(1,000,000)
  192. local PETemp = Instance.new("ParticleEmitter",mouse.Target) --HitMarkers
  193. PETemp.Texture = "rbxassetid://857586798"
  194. PETemp.Acceleration = Vector3.new(0,-10,0)
  195. PETemp.Lifetime = NumberRange.new(2,4)
  196. PETemp.Speed = NumberRange.new(8,10)
  197. PETemp.Rate = 100
  198. PETemp.VelocitySpread = 50
  199. PETemp.Rotation = NumberRange.new(50,50)
  200. PETemp.RotSpeed = NumberRange.new(200,200)
  201. PETemp.Enabled = true
  202. wait(0.1)
  203. PETemp.Enabled = false
  204. end
  205. end
  206.  
  207.  
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227. mouse.KeyDown:connect(function(key)
  228.  
  229.  
  230. if key == "q" then
  231. MousePart.CFrame = CFrame.new(mouse.Hit.p)
  232. snipe(MousePart)
  233. end
  234.  
  235.  
  236. end)
  237.  
  238. pingudecal = "http://www.roblox.com/asset/?id=424102416"
  239. local didpingu = false
  240. local ScreenGui = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  241. ScreenGui.Name = "nooties"
  242. local TextButton = Instance.new("TextButton")
  243. TextButton.Parent = ScreenGui
  244. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  245. TextButton.Size = UDim2.new(0, 200, 0, 50)
  246. TextButton.Font = Enum.Font.SourceSans
  247. TextButton.FontSize = Enum.FontSize.Size14
  248. TextButton.Text = "rekt server"
  249. TextButton.TextSize = 14
  250. TextButton.MouseButton1Down:connect(function()
  251. s1.SoundId = "rbxassetid://0"
  252. TextButton.Visible = false
  253. wait( )
  254. if didpingu == false then
  255. didpingu = true
  256. for i,v in pairs(game.Players:GetChildren()) do
  257. if v:IsA("Player") then
  258. local nooties = Instance.new("Sound",workspace)
  259. nooties.SoundId = "rbxassetid://675547468"
  260. nooties.Volume = 1
  261. nooties.Looped = true
  262. nooties:Play()
  263. end
  264. end
  265. wait(1)
  266. msg = Instance.new("Message",workspace)
  267. msg.Text = "I Like To Sing"
  268. wait(1.5)
  269. msg:Destroy()
  270. msg = Instance.new("Message",workspace)
  271. msg.Text = "Dance"
  272. wait(1)
  273. msg:Destroy()
  274. msg = Instance.new("Message",workspace)
  275. msg.Text = ""
  276. wait(1.5)
  277. msg:Destroy()
  278. msg = Instance.new("Message",workspace)
  279. msg.Text = "Pretend"
  280. wait(2)
  281. msg:Destroy()
  282. msg = Instance.new("Message",workspace)
  283. msg.Text = "And"
  284. wait(2)
  285. msg:Destroy()
  286. msg = Instance.new("Message",workspace)
  287. msg.Text = "I Like To Have"
  288. wait(1)
  289. msg:Destroy()
  290. msg = Instance.new("Message",workspace)
  291. msg.Text = "Fun"
  292. wait(0.1)
  293. msg:Destroy()
  294. wait(0.1)
  295. msg = Instance.new("Message",workspace)
  296. msg.Text = "Fun"
  297. wait(0.1)
  298. msg:Destroy()
  299. wait(0.1)
  300. msg = Instance.new("Message",workspace)
  301. msg.Text = "Fun"
  302. wait(0.1)
  303. msg:Destroy()
  304. wait(0.1)
  305. msg = Instance.new("Message",workspace)
  306. msg.Text = "Fun"
  307. wait(0.1)
  308. msg:Destroy()
  309. wait(0.1)
  310. msg = Instance.new("Message",workspace)
  311. msg.Text = "Fun"
  312. wait(0.1)
  313. msg:Destroy()
  314. wait(0.1)msg = Instance.new("Message",workspace)
  315. msg.Text = "Fun"
  316. wait(0.1)
  317. msg:Destroy()
  318. wait(0.1)
  319. msg = Instance.new("Message",workspace)
  320. msg.Text = "Fun"
  321. wait(0.1)
  322. msg:Destroy()
  323. wait(0.1)
  324. msg = Instance.new("Message",workspace)
  325. msg.Text = "Fun"
  326. wait(0.1)
  327. msg:Destroy()
  328. wait(0.1)
  329. msg = Instance.new("Message",workspace)
  330. msg.Text = "Fun"
  331. wait(0.1)
  332. msg:Destroy()
  333. wait(0.1)
  334. msg = Instance.new("Message",workspace)
  335. msg.Text = "Fun"
  336. wait(0.1)
  337. msg:Destroy()
  338. wait(0.1)
  339. msg = Instance.new("Message",workspace)
  340. msg.Text = "Fun"
  341. wait(0.1)
  342. msg:Destroy()
  343. wait(0.1)
  344. wait( )
  345. local Sky = Instance.new("Sky",game.Lighting)
  346. Sky.SkyboxBk = pingudecal
  347. Sky.SkyboxDn = pingudecal
  348. Sky.SkyboxFt = pingudecal
  349. Sky.SkyboxLf = pingudecal
  350. Sky.SkyboxRt = pingudecal
  351. Sky.SkyboxUp = pingudecal
  352. local function modelasd()
  353. for i,v in pairs(workspace:GetChildren()) do
  354. if v:IsA("Model") then
  355. for i,a in pairs(v:GetChildren()) do
  356. local top = Instance.new("Decal",a)
  357. top.Face = "Top"
  358. top.Texture = pingudecal
  359. local btm = Instance.new("Decal",a)
  360. btm.Face = "Bottom"
  361. btm.Texture = pingudecal
  362. local lft = Instance.new("Decal",a)
  363. lft.Face = "Left"
  364. lft.Texture = pingudecal
  365. local rft = Instance.new("Decal",a)
  366. rft.Face = "Right"
  367. rft.Texture = pingudecal
  368. local frnt = Instance.new("Decal",a)
  369. frnt.Face = "Front"
  370. frnt.Texture = pingudecal
  371. local bk = Instance.new("Decal",a)
  372. bk.Face = "Back"
  373. bk.Texture = pingudecal
  374. local VTest = Instance.new("ParticleEmitter")
  375. VTest.Parent = a
  376. VTest.Texture = pingudecal
  377. VTest.Speed = NumberRange.new(200)
  378. VTest.Rate = 200
  379. VTest.Size = NumberSequence.new(10000,10000)
  380. VTest.Lifetime = NumberRange.new(1000)
  381. local pepe = coroutine.create(function()
  382. while wait() do
  383. local Explosion = Instance.new("Explosion",a)
  384. Explosion.BlastRadius = 0
  385. end
  386. end)
  387. coroutine.resume(pepe)
  388. end
  389. end
  390. end
  391. end
  392. local function partasd()
  393. for i,a in pairs(workspace:GetChildren()) do
  394. local top = Instance.new("Decal",a)
  395. top.Face = "Top"
  396. top.Texture = pingudecal
  397. local btm = Instance.new("Decal",a)
  398. btm.Face = "Bottom"
  399. btm.Texture = pingudecal
  400. local lft = Instance.new("Decal",a)
  401. lft.Face = "Left"
  402. lft.Texture = pingudecal
  403. local rft = Instance.new("Decal",a)
  404. rft.Face = "Right"
  405. rft.Texture = pingudecal
  406. local frnt = Instance.new("Decal",a)
  407. frnt.Face = "Front"
  408. frnt.Texture = pingudecal
  409. local bk = Instance.new("Decal",a)
  410. bk.Face = "Back"
  411. bk.Texture = pingudecal
  412. local VTest = Instance.new("ParticleEmitter")
  413. VTest.Parent = a
  414. VTest.Texture = pingudecal
  415. VTest.Speed = NumberRange.new(200)
  416. VTest.Rate = 200
  417. VTest.Lifetime = NumberRange.new(1000)
  418. VTest.Size = NumberSequence.new(10000,10000)
  419. local pepe = coroutine.create(function()
  420. while wait() do
  421. if a.Name ~= "Head" or "Torso" or "Left Arm" or "Right Arm" or "Left Leg" or "Right Leg" then
  422. local Explosion = Instance.new("Explosion",a)
  423. Explosion.BlastRadius = 0
  424. end
  425. end
  426. end)
  427. coroutine.resume(pepe)
  428. end
  429. end
  430. partasd()
  431. modelasd()
  432. else
  433. warn("Already Ran! Did not execute the script!")
  434. end
  435. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement