Advertisement
The_God_M8

DIOOOOOOOOOOOOOOOOO

May 10th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 116.48 KB | None | 0 0
  1. --// Script made by Cronizete
  2. --// Give credits.
  3. --]]
  4. --//====================================================\\--
  5. --|| CREATED BY SHACKLUSTER
  6. --\\====================================================//--
  7. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  8. local Player,game,owner = owner,game
  9. local RealPlayer = Player
  10. do
  11. print("FE Compatibility code by Mokiros")
  12. local rp = RealPlayer
  13. script.Parent = rp.Character
  14.  
  15. --RemoteEvent for communicating
  16. local Event = Instance.new("RemoteEvent")
  17. Event.Name = "UserInput_Event"
  18.  
  19. --Fake event to make stuff like Mouse.KeyDown work
  20. local function fakeEvent()
  21. local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
  22. t.connect = t.Connect
  23. return t
  24. end
  25.  
  26. --Creating fake input objects with fake variables
  27. local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
  28. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  29. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  30. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  31. end}
  32. --Merged 2 functions into one by checking amount of arguments
  33. CAS.UnbindAction = CAS.BindAction
  34.  
  35. --This function will trigger the events that have been :Connect()'ed
  36. local function te(self,ev,...)
  37. local t = m[ev]
  38. if t and t._fakeEvent then
  39. for _,f in pairs(t.Functions) do
  40. f(...)
  41. end
  42. end
  43. end
  44. m.TrigEvent = te
  45. UIS.TrigEvent = te
  46.  
  47. Event.OnServerEvent:Connect(function(plr,io)
  48. if plr~=rp then return end
  49. m.Target = io.Target
  50. m.Hit = io.Hit
  51. if not io.isMouse then
  52. local b = io.UserInputState == Enum.UserInputState.Begin
  53. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  54. return m:TrigEvent(b and "Button1Down" or "Button1Up")
  55. end
  56. for _,t in pairs(CAS.Actions) do
  57. for _,k in pairs(t.Keys) do
  58. if k==io.KeyCode then
  59. t.Function(t.Name,io.UserInputState,io)
  60. end
  61. end
  62. end
  63. m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  64. UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  65. end
  66. end)
  67. Event.Parent = NLS([==[
  68. local Player = game:GetService("Players").LocalPlayer
  69. local Event = script:WaitForChild("UserInput_Event")
  70.  
  71. local Mouse = Player:GetMouse()
  72. local UIS = game:GetService("UserInputService")
  73. local input = function(io,a)
  74. if a then return end
  75. --Since InputObject is a client-side instance, we create and pass table instead
  76. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  77. end
  78. UIS.InputBegan:Connect(input)
  79. UIS.InputEnded:Connect(input)
  80.  
  81. local h,t
  82. --Give the server mouse data 30 times every second, but only if the values changed
  83. --If player is not moving their mouse, client won't fire events
  84. while wait(1/30) do
  85. if h~=Mouse.Hit or t~=Mouse.Target then
  86. h,t=Mouse.Hit,Mouse.Target
  87. Event:FireServer({isMouse=true,Target=t,Hit=h})
  88. end
  89. end]==],Player.Character)
  90.  
  91. ----Sandboxed game object that allows the usage of client-side methods and services
  92. --Real game object
  93. local _rg = game
  94.  
  95. --Metatable for fake service
  96. local fsmt = {
  97. __index = function(self,k)
  98. local s = rawget(self,"_RealService")
  99. if s then return s[k] end
  100. end,
  101. __newindex = function(self,k,v)
  102. local s = rawget(self,"_RealService")
  103. if s then s[k]=v end
  104. end,
  105. __call = function(self,...)
  106. local s = rawget(self,"_RealService")
  107. if s then return s(...) end
  108. end
  109. }
  110. local function FakeService(t,RealService)
  111. t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
  112. return setmetatable(t,fsmt)
  113. end
  114.  
  115. --Fake game object
  116. local g = {
  117. GetService = function(self,s)
  118. return self[s]
  119. end,
  120. Players = FakeService({
  121. LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
  122. },"Players"),
  123. UserInputService = FakeService(UIS,"UserInputService"),
  124. ContextActionService = FakeService(CAS,"ContextActionService"),
  125. }
  126. rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
  127. g.service = g.GetService
  128.  
  129. g.RunService = FakeService({
  130. RenderStepped = _rg:GetService("RunService").Heartbeat,
  131. BindToRenderStep = function(self,name,_,fun)
  132.  
  133. end,
  134. UnbindFromRenderStep = function(self,name)
  135. self._btrs[name]:Disconnect()
  136. end,
  137. },"RunService")
  138.  
  139. setmetatable(g,{
  140. __index=function(self,s)
  141. return _rg:GetService(s) or typeof(_rg[s])=="function"
  142. and function(_,...)return _rg[s](_rg,...)end or _rg[s]
  143. end,
  144. __newindex = fsmt.__newindex,
  145. __call = fsmt.__call
  146. })
  147. --Changing owner to fake player object to support owner:GetMouse()
  148. game,owner = g,g.Players.LocalPlayer
  149. end
  150.  
  151. local mouse = owner:GetMouse()
  152. A = true
  153. if A == true then
  154. Model = Instance.new("Model")
  155. Model.Name = "Weapon"
  156. p = Instance.new("Part", Model)
  157. p.Name = "Part"
  158. p.TopSurface = 0
  159. p.BottomSurface = 0
  160. p.formFactor = "Custom"
  161. p.Size = Vector3.new(10, 12, 10)
  162. p.CFrame = CFrame.new(35.4000015, 7.0999999, 63, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  163. p.BrickColor = BrickColor.new("Medium stone grey")
  164. p.Transparency = 0
  165. p.Reflectance = .1
  166. p.Material = Enum.Material.Concrete
  167. m = Instance.new("CylinderMesh")
  168. m.Scale = Vector3.new(1, 1.02999997, 1)
  169. m.Parent = p
  170. p = Instance.new("Part", Model)
  171. p.Name = "Part"
  172. p.TopSurface = 0
  173. p.BottomSurface = 0
  174. p.formFactor = "Custom"
  175. p.Size = Vector3.new(2, 12.8, 2)
  176. p.CFrame = CFrame.new(35.4000015, 7.19999981, 63, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  177. p.BrickColor = BrickColor.new("Bright yellow")
  178. p.Transparency = 0
  179. p.Reflectance = .1
  180. p.Material = Enum.Material.Plastic
  181. m = Instance.new("CylinderMesh")
  182. m.Scale = Vector3.new(1, 1, 1)
  183. m.Parent = p
  184. p = Instance.new("Part", Model)
  185. p.Name = "Part"
  186. p.TopSurface = 0
  187. p.BottomSurface = 0
  188. p.formFactor = "Custom"
  189. p.Size = Vector3.new(1.79, 5, 1)
  190. p.CFrame = CFrame.new(29.7000179, 8.89999485, 63.3000221, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  191. p.BrickColor = BrickColor.new("Bright yellow")
  192. p.Transparency = 0
  193. p.Reflectance = .1
  194. p.Material = Enum.Material.Plastic
  195. p = Instance.new("Part", Model)
  196. p.Name = "Part"
  197. p.TopSurface = 0
  198. p.BottomSurface = 0
  199. p.formFactor = "Custom"
  200. p.Size = Vector3.new(5, 1.40, 0.99)
  201. p.CFrame = CFrame.new(29.7000198, 10.4999943, 63.3000031, -1.49008788e-008, -2.3933373e-007, 0.999990225, 6.6675625e-009, 0.99999392, 2.39334668e-007, -0.999994516, 6.66761935e-009, 7.45059765e-008)
  202. p.BrickColor = BrickColor.new("Bright yellow")
  203. p.Transparency = 0
  204. p.Reflectance = .1
  205. p.Material = Enum.Material.Plastic
  206. m = Instance.new("SpecialMesh")
  207. m.Scale = Vector3.new(1, 1, 1)
  208. m.Parent = p
  209. m.MeshType = Enum.MeshType.Wedge
  210. p = Instance.new("Part", Model)
  211. p.Name = "Center"
  212. p.TopSurface = 0
  213. p.BottomSurface = 0
  214. p.formFactor = "Custom"
  215. p.Size = Vector3.new(12.5, 5.80, 27.6)
  216. p.CFrame = CFrame.new(43.0000076, 9.30000114, 62.8999977, 1.06581131e-014, -8.74229471e-008, 1, -7.10542736e-015, 1, 8.742294e-008, -1, -7.10542736e-015, -4.37113776e-008)
  217. p.BrickColor = BrickColor.new("Bright yellow")
  218. p.Transparency = 1
  219. p.Reflectance = .1
  220. p.Material = Enum.Material.Plastic
  221. p = Instance.new("Part", Model)
  222. p.Name = "Part"
  223. p.TopSurface = 0
  224. p.BottomSurface = 0
  225. p.formFactor = "Custom"
  226. p.Size = Vector3.new(6.80, 1, 6.00)
  227. p.CFrame = CFrame.new(51.9999924, 9.06999207, 68.6000443, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  228. p.BrickColor = BrickColor.new("Bright yellow")
  229. p.Transparency = 0
  230. p.Reflectance = .1
  231. p.Material = Enum.Material.Plastic
  232. p = Instance.new("Part", Model)
  233. p.Name = "Part"
  234. p.TopSurface = 0
  235. p.BottomSurface = 0
  236. p.formFactor = "Custom"
  237. p.Size = Vector3.new(11, 5.40, 2.79)
  238. p.CFrame = CFrame.new(56.5999718, 9.76999664, 63.0000076, 1.49011612e-008, 5.89458523e-007, -0.999990225, -3.49571337e-007, 0.99999392, 5.89460512e-007, 0.999994278, 3.49571422e-007, -4.47034836e-008)
  239. p.BrickColor = BrickColor.new("Bright yellow")
  240. p.Transparency = 0
  241. p.Reflectance = .1
  242. p.Material = Enum.Material.Plastic
  243. m = Instance.new("SpecialMesh")
  244. m.Scale = Vector3.new(1, 1, 1)
  245. m.Parent = p
  246. m.MeshType = Enum.MeshType.Wedge
  247. p = Instance.new("Part", Model)
  248. p.Name = "Part"
  249. p.TopSurface = 0
  250. p.BottomSurface = 0
  251. p.formFactor = "Custom"
  252. p.Size = Vector3.new(2.60, 11, 1.99)
  253. p.CFrame = CFrame.new(39.4000015, 10.7699995, 63, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  254. p.BrickColor = BrickColor.new("Bright yellow")
  255. p.Transparency = 0
  256. p.Reflectance = .1
  257. p.Material = Enum.Material.Plastic
  258. p = Instance.new("Part", Model)
  259. p.Name = "Part"
  260. p.TopSurface = 0
  261. p.BottomSurface = 0
  262. p.formFactor = "Custom"
  263. p.Size = Vector3.new(3.20, 11.0, 5)
  264. p.CFrame = CFrame.new(35.9000092, 11.0999928, 63.0000153, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  265. p.BrickColor = BrickColor.new("Bright yellow")
  266. p.Transparency = 0
  267. p.Reflectance = .1
  268. p.Material = Enum.Material.Plastic
  269. p = Instance.new("Part", Model)
  270. p.Name = "Part"
  271. p.TopSurface = 0
  272. p.BottomSurface = 0
  273. p.formFactor = "Custom"
  274. p.Size = Vector3.new(1.99, 1, 1)
  275. p.CFrame = CFrame.new(51.8999863, 16.6699886, 58.4000015, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  276. p.BrickColor = BrickColor.new("Mid gray")
  277. p.Transparency = 0
  278. p.Reflectance = .1
  279. p.Material = Enum.Material.Plastic
  280. p = Instance.new("Part", Model)
  281. p.Name = "Part"
  282. p.TopSurface = 0
  283. p.BottomSurface = 0
  284. p.formFactor = "Custom"
  285. p.Size = Vector3.new(1, 1, 4.59)
  286. p.CFrame = CFrame.new(49.099987, 18.1699905, 58.4000015, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  287. p.BrickColor = BrickColor.new("Mid gray")
  288. p.Transparency = 0
  289. p.Reflectance = .1
  290. p.Material = Enum.Material.Plastic
  291. p = Instance.new("Part", Model)
  292. p.Name = "Part"
  293. p.TopSurface = 0
  294. p.BottomSurface = 0
  295. p.formFactor = "Custom"
  296. p.Size = Vector3.new(1, 12.6, 9.80)
  297. p.CFrame = CFrame.new(40.2999878, 6.77000237, 63.0000038, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  298. p.BrickColor = BrickColor.new("Bright yellow")
  299. p.Transparency = 0
  300. p.Reflectance = .1
  301. p.Material = Enum.Material.Plastic
  302. p = Instance.new("Part", Model)
  303. p.Name = "Part"
  304. p.TopSurface = 0
  305. p.BottomSurface = 0
  306. p.formFactor = "Custom"
  307. p.Size = Vector3.new(5.19, 1.39, 2.39)
  308. p.CFrame = CFrame.new(32.2000008, 12.5999899, 63.2999992, -1.49008788e-008, -2.3933373e-007, 0.999990225, 6.6675625e-009, 0.99999392, 2.39334668e-007, -0.999994516, 6.66761935e-009, 7.45059765e-008)
  309. p.BrickColor = BrickColor.new("Bright yellow")
  310. p.Transparency = 0
  311. p.Reflectance = .1
  312. p.Material = Enum.Material.Plastic
  313. m = Instance.new("SpecialMesh")
  314. m.Scale = Vector3.new(1, 1, 1)
  315. m.Parent = p
  316. m.MeshType = Enum.MeshType.Wedge
  317. p = Instance.new("Part", Model)
  318. p.Name = "Part"
  319. p.TopSurface = 0
  320. p.BottomSurface = 0
  321. p.formFactor = "Custom"
  322. p.Size = Vector3.new(11, 0.60, 1.99)
  323. p.CFrame = CFrame.new(39.3999825, 12.3699951, 63.0000267, 1.49008779e-008, 2.39330944e-007, -0.999990225, 6.66761935e-009, 0.99999392, 2.39331769e-007, 0.999994516, -6.66753408e-009, -7.45059765e-008)
  324. p.BrickColor = BrickColor.new("Bright yellow")
  325. p.Transparency = 0
  326. p.Reflectance = .1
  327. p.Material = Enum.Material.Plastic
  328. m = Instance.new("SpecialMesh")
  329. m.Scale = Vector3.new(1, 1, 1)
  330. m.Parent = p
  331. m.MeshType = Enum.MeshType.Wedge
  332. p = Instance.new("Part", Model)
  333. p.Name = "Part"
  334. p.TopSurface = 0
  335. p.BottomSurface = 0
  336. p.formFactor = "Custom"
  337. p.Size = Vector3.new(3.20, 11, 5.60)
  338. p.CFrame = CFrame.new(50.1999855, 14.0699921, 63, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  339. p.BrickColor = BrickColor.new("Bright yellow")
  340. p.Transparency = 0
  341. p.Reflectance = .1
  342. p.Material = Enum.Material.Plastic
  343. p = Instance.new("Part", Model)
  344. p.Name = "Part"
  345. p.TopSurface = 0
  346. p.BottomSurface = 0
  347. p.formFactor = "Custom"
  348. p.Size = Vector3.new(5, 13, 3.79)
  349. p.CFrame = CFrame.new(43.2999916, 9.56999779, 63, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  350. p.BrickColor = BrickColor.new("Bright yellow")
  351. p.Transparency = 0
  352. p.Reflectance = .1
  353. p.Material = Enum.Material.Plastic
  354. p = Instance.new("Part", Model)
  355. p.Name = "Part"
  356. p.TopSurface = 0
  357. p.BottomSurface = 0
  358. p.formFactor = "Custom"
  359. p.Size = Vector3.new(5.19, 1.39, 2.39)
  360. p.CFrame = CFrame.new(39.6000061, 12.599987, 63.2999992, 1.49011612e-008, 5.89458523e-007, -0.999990225, -3.49571337e-007, 0.99999392, 5.89460512e-007, 0.999994278, 3.49571422e-007, -4.47034836e-008)
  361. p.BrickColor = BrickColor.new("Bright yellow")
  362. p.Transparency = 0
  363. p.Reflectance = .1
  364. p.Material = Enum.Material.Plastic
  365. m = Instance.new("SpecialMesh")
  366. m.Scale = Vector3.new(1, 1, 1)
  367. m.Parent = p
  368. m.MeshType = Enum.MeshType.Wedge
  369. p = Instance.new("Part", Model)
  370. p.Name = "Part"
  371. p.TopSurface = 0
  372. p.BottomSurface = 0
  373. p.formFactor = "Custom"
  374. p.Size = Vector3.new(5.19, 1, 1)
  375. p.CFrame = CFrame.new(46.2999878, 15.069993, 67.5999985, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  376. p.BrickColor = BrickColor.new("Mid gray")
  377. p.Transparency = 0
  378. p.Reflectance = .1
  379. p.Material = Enum.Material.Plastic
  380. p = Instance.new("Part", Model)
  381. p.Name = "Part"
  382. p.TopSurface = 0
  383. p.BottomSurface = 0
  384. p.formFactor = "Custom"
  385. p.Size = Vector3.new(3.20, 5, 4)
  386. p.CFrame = CFrame.new(32.200016, 9.59999657, 63.3000221, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  387. p.BrickColor = BrickColor.new("Bright yellow")
  388. p.Transparency = 0
  389. p.Reflectance = .1
  390. p.Material = Enum.Material.Plastic
  391. p = Instance.new("Part", Model)
  392. p.Name = "Part"
  393. p.TopSurface = 0
  394. p.BottomSurface = 0
  395. p.formFactor = "Custom"
  396. p.Size = Vector3.new(6, 6.79, 2.79)
  397. p.CFrame = CFrame.new(51.9999924, 9.06999302, 70.5000458, -1, 0, -4.37113883e-008, 0, 1, 0, 4.37113883e-008, 0, -1)
  398. p.BrickColor = BrickColor.new("Bright yellow")
  399. p.Transparency = 0
  400. p.Reflectance = .1
  401. p.Material = Enum.Material.Plastic
  402. m = Instance.new("SpecialMesh")
  403. m.Scale = Vector3.new(1, 1, 1)
  404. m.Parent = p
  405. m.MeshType = Enum.MeshType.Wedge
  406. p = Instance.new("Part", Model)
  407. p.Name = "Part"
  408. p.TopSurface = 0
  409. p.BottomSurface = 0
  410. p.formFactor = "Custom"
  411. p.Size = Vector3.new(0.60, 7.40, 3.79)
  412. p.CFrame = CFrame.new(43.2999916, 12.3699942, 63.2000008, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  413. p.BrickColor = BrickColor.new("Black")
  414. p.Transparency = 0
  415. p.Reflectance = .1
  416. p.Material = Enum.Material.Plastic
  417. p = Instance.new("Part", Model)
  418. p.Name = "Part"
  419. p.TopSurface = 0
  420. p.BottomSurface = 0
  421. p.formFactor = "Custom"
  422. p.Size = Vector3.new(6.80, 1, 6.00)
  423. p.CFrame = CFrame.new(51.9999924, 9.06999588, 57.3999977, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  424. p.BrickColor = BrickColor.new("Bright yellow")
  425. p.Transparency = 0
  426. p.Reflectance = .1
  427. p.Material = Enum.Material.Plastic
  428. p = Instance.new("Part", Model)
  429. p.Name = "Part"
  430. p.TopSurface = 0
  431. p.BottomSurface = 0
  432. p.formFactor = "Custom"
  433. p.Size = Vector3.new(11, 3.20, 2.19)
  434. p.CFrame = CFrame.new(54.0999756, 14.0699921, 63.0000076, 1.49011612e-008, 5.89458523e-007, -0.999990225, -3.49571337e-007, 0.99999392, 5.89460512e-007, 0.999994278, 3.49571422e-007, -4.47034836e-008)
  435. p.BrickColor = BrickColor.new("Bright yellow")
  436. p.Transparency = 0
  437. p.Reflectance = .1
  438. p.Material = Enum.Material.Plastic
  439. m = Instance.new("SpecialMesh")
  440. m.Scale = Vector3.new(1, 1, 1)
  441. m.Parent = p
  442. m.MeshType = Enum.MeshType.Wedge
  443. p = Instance.new("Part", Model)
  444. p.Name = "Part"
  445. p.TopSurface = 0
  446. p.BottomSurface = 0
  447. p.formFactor = "Custom"
  448. p.Size = Vector3.new(2.60, 11, 2.39)
  449. p.CFrame = CFrame.new(32.1999741, 10.7699986, 63, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  450. p.BrickColor = BrickColor.new("Bright yellow")
  451. p.Transparency = 0
  452. p.Reflectance = .1
  453. p.Material = Enum.Material.Plastic
  454. p = Instance.new("Part", Model)
  455. p.Name = "Part"
  456. p.TopSurface = 0
  457. p.BottomSurface = 0
  458. p.formFactor = "Custom"
  459. p.Size = Vector3.new(5.19, 1, 1)
  460. p.CFrame = CFrame.new(46.2999878, 15.0699921, 58.4000015, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  461. p.BrickColor = BrickColor.new("Mid gray")
  462. p.Transparency = 0
  463. p.Reflectance = .1
  464. p.Material = Enum.Material.Plastic
  465. p = Instance.new("Part", Model)
  466. p.Name = "Part"
  467. p.TopSurface = 0
  468. p.BottomSurface = 0
  469. p.formFactor = "Custom"
  470. p.Size = Vector3.new(5, 0.80, 0.79)
  471. p.CFrame = CFrame.new(30.6000195, 11.5999937, 63.3000107, -1.49008788e-008, -2.3933373e-007, 0.999990225, 6.6675625e-009, 0.99999392, 2.39334668e-007, -0.999994516, 6.66761935e-009, 7.45059765e-008)
  472. p.BrickColor = BrickColor.new("Bright yellow")
  473. p.Transparency = 0
  474. p.Reflectance = .1
  475. p.Material = Enum.Material.Plastic
  476. m = Instance.new("SpecialMesh")
  477. m.Scale = Vector3.new(1, 1, 1)
  478. m.Parent = p
  479. m.MeshType = Enum.MeshType.Wedge
  480. p = Instance.new("Part", Model)
  481. p.Name = "Part"
  482. p.TopSurface = 0
  483. p.BottomSurface = 0
  484. p.formFactor = "Custom"
  485. p.Size = Vector3.new(10, 12, 10)
  486. p.CFrame = CFrame.new(51.8000298, 7.099998, 63.0000191, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  487. p.BrickColor = BrickColor.new("Medium stone grey")
  488. p.Transparency = 0
  489. p.Reflectance = .1
  490. p.Material = Enum.Material.Concrete
  491. m = Instance.new("CylinderMesh")
  492. m.Scale = Vector3.new(1, 1.02999997, 1)
  493. m.Parent = p
  494. p = Instance.new("Part", Model)
  495. p.Name = "Part"
  496. p.TopSurface = 0
  497. p.BottomSurface = 0
  498. p.formFactor = "Custom"
  499. p.Size = Vector3.new(0.60, 5.19, 5)
  500. p.CFrame = CFrame.new(35.9000015, 13, 63.2999992, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  501. p.BrickColor = BrickColor.new("Bright yellow")
  502. p.Transparency = 0
  503. p.Reflectance = .1
  504. p.Material = Enum.Material.Plastic
  505. p = Instance.new("Part", Model)
  506. p.Name = "Part"
  507. p.TopSurface = 0
  508. p.BottomSurface = 0
  509. p.formFactor = "Custom"
  510. p.Size = Vector3.new(6, 6.79, 2.79)
  511. p.CFrame = CFrame.new(51.9999847, 9.06999207, 55.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  512. p.BrickColor = BrickColor.new("Bright yellow")
  513. p.Transparency = 0
  514. p.Reflectance = .1
  515. p.Material = Enum.Material.Plastic
  516. m = Instance.new("SpecialMesh")
  517. m.Scale = Vector3.new(1, 1, 1)
  518. m.Parent = p
  519. m.MeshType = Enum.MeshType.Wedge
  520. p = Instance.new("Part", Model)
  521. p.Name = "Part"
  522. p.TopSurface = 0
  523. p.BottomSurface = 0
  524. p.formFactor = "Custom"
  525. p.Size = Vector3.new(2.79, 7.40, 0.79)
  526. p.CFrame = CFrame.new(44.7999916, 14.0699921, 63.2000008, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  527. p.BrickColor = BrickColor.new("Black")
  528. p.Transparency = 0
  529. p.Reflectance = .1
  530. p.Material = Enum.Material.Plastic
  531. p = Instance.new("Part", Model)
  532. p.Name = "Part"
  533. p.TopSurface = 0
  534. p.BottomSurface = 0
  535. p.formFactor = "Custom"
  536. p.Size = Vector3.new(5.40, 11, 10)
  537. p.CFrame = CFrame.new(50.1999893, 9.76999474, 63, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  538. p.BrickColor = BrickColor.new("Bright yellow")
  539. p.Transparency = 0
  540. p.Reflectance = .1
  541. p.Material = Enum.Material.Plastic
  542. p = Instance.new("Part", Model)
  543. p.Name = "Part"
  544. p.TopSurface = 0
  545. p.BottomSurface = 0
  546. p.formFactor = "Custom"
  547. p.Size = Vector3.new(11, 0.60, 2.39)
  548. p.CFrame = CFrame.new(32.1999855, 12.3699961, 62.9999733, -1.49008788e-008, -2.3933373e-007, 0.999990225, 6.6675625e-009, 0.99999392, 2.39334668e-007, -0.999994516, 6.66761935e-009, 7.45059765e-008)
  549. p.BrickColor = BrickColor.new("Bright yellow")
  550. p.Transparency = 0
  551. p.Reflectance = .1
  552. p.Material = Enum.Material.Plastic
  553. m = Instance.new("SpecialMesh")
  554. m.Scale = Vector3.new(1, 1, 1)
  555. m.Parent = p
  556. m.MeshType = Enum.MeshType.Wedge
  557. p = Instance.new("Part", Model)
  558. p.Name = "Part"
  559. p.TopSurface = 0
  560. p.BottomSurface = 0
  561. p.formFactor = "Custom"
  562. p.Size = Vector3.new(4, 13, 1)
  563. p.CFrame = CFrame.new(40.8999939, 10.0700006, 63, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  564. p.BrickColor = BrickColor.new("Bright yellow")
  565. p.Transparency = 0
  566. p.Reflectance = .1
  567. p.Material = Enum.Material.Plastic
  568. p = Instance.new("Part", Model)
  569. p.Name = "Part"
  570. p.TopSurface = 0
  571. p.BottomSurface = 0
  572. p.formFactor = "Custom"
  573. p.Size = Vector3.new(10.1, 1, 0.99)
  574. p.CFrame = CFrame.new(51.8999825, 18.1699867, 62.9999733, 1.49008796e-008, 2.39336913e-007, -0.999990225, 6.66744882e-009, 0.99999392, 2.39337737e-007, 0.999994516, -6.66736355e-009, -7.45059765e-008)
  575. p.BrickColor = BrickColor.new("Mid gray")
  576. p.Transparency = 0
  577. p.Reflectance = .1
  578. p.Material = Enum.Material.Plastic
  579. m = Instance.new("SpecialMesh")
  580. m.Scale = Vector3.new(1, 1, 1)
  581. m.Parent = p
  582. m.MeshType = Enum.MeshType.Wedge
  583. p = Instance.new("Part", Model)
  584. p.Name = "Part"
  585. p.TopSurface = 0
  586. p.BottomSurface = 0
  587. p.formFactor = "Custom"
  588. p.Size = Vector3.new(1, 1, 4.59)
  589. p.CFrame = CFrame.new(49.099987, 18.1699944, 67.5999985, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  590. p.BrickColor = BrickColor.new("Mid gray")
  591. p.Transparency = 0
  592. p.Reflectance = .1
  593. p.Material = Enum.Material.Plastic
  594. p = Instance.new("Part", Model)
  595. p.Name = "Part"
  596. p.TopSurface = 0
  597. p.BottomSurface = 0
  598. p.formFactor = "Custom"
  599. p.Size = Vector3.new(1.99, 1, 1)
  600. p.CFrame = CFrame.new(51.8999863, 16.6699886, 67.5999908, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  601. p.BrickColor = BrickColor.new("Mid gray")
  602. p.Transparency = 0
  603. p.Reflectance = .1
  604. p.Material = Enum.Material.Plastic
  605. p = Instance.new("Part", Model)
  606. p.Name = "Part"
  607. p.TopSurface = 0
  608. p.BottomSurface = 0
  609. p.formFactor = "Custom"
  610. p.Size = Vector3.new(1, 1, 4.59)
  611. p.CFrame = CFrame.new(49.099987, 18.1699867, 63.0000153, 0, -5.38727239e-028, 0.999999642, -0.999999642, -5.38727287e-028, 9.62964972e-035, 5.38727335e-028, -0.999999762, -4.37113776e-008)
  612. p.BrickColor = BrickColor.new("Mid gray")
  613. p.Transparency = 0
  614. p.Reflectance = .1
  615. p.Material = Enum.Material.Plastic
  616. p = Instance.new("Part", Model)
  617. p.Name = "Part"
  618. p.TopSurface = 0
  619. p.BottomSurface = 0
  620. p.formFactor = "Custom"
  621. p.Size = Vector3.new(10.1, 1, 0.99)
  622. p.CFrame = CFrame.new(46.2999916, 18.1699886, 63.0000229, -1.49008823e-008, -2.39345496e-007, 0.999990225, 6.66727829e-009, 0.99999392, 2.39346434e-007, -0.999994516, 6.66733513e-009, 7.45059765e-008)
  623. p.BrickColor = BrickColor.new("Mid gray")
  624. p.Transparency = 0
  625. p.Reflectance = .1
  626. p.Material = Enum.Material.Plastic
  627. m = Instance.new("SpecialMesh")
  628. m.Scale = Vector3.new(1, 1, 1)
  629. m.Parent = p
  630. m.MeshType = Enum.MeshType.Wedge
  631.  
  632. Spawn = function()
  633. Model = Model:clone()
  634. for _, v in pairs(Model:children()) do
  635. if v.className == "Part" then
  636. if v.Name ~= "Center" then
  637. w = Instance.new("Weld")
  638. w.Part0 = Model.Center
  639. w.Part1 = v
  640. w.C1 = v.CFrame:inverse() * CFrame.new(v.Position)
  641. w.C0 = Model.Center.CFrame:inverse() * CFrame.new(v.Position)
  642. w.Parent = w.Part0
  643. end
  644. end
  645. end
  646. return Model
  647. end
  648.  
  649. CameraRadius = 66
  650. TimeStopRadius = 66
  651.  
  652. RightShoulderC0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  653. RightShoulderC1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  654. LeftShoulderC0 = CFrame.new(-1, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  655. LeftShoulderC1 = CFrame.new(0.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  656. RightHipC0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  657. RightHipC1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  658. LeftHipC0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  659. LeftHipC1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  660. NeckC0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  661. NeckC1 = CFrame.new(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  662. RootJointC0 = CFrame.new(0, 0, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  663. RootJointC1 = CFrame.new(0, 0, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  664.  
  665. getWelds = function(c) --designate weld variables
  666. local t = c.Torso
  667. local hrp = c.HumanoidRootPart.RootJoint
  668. RightShoulder = t:FindFirstChild("Right Shoulder")
  669. LeftShoulder = t:FindFirstChild("Left Shoulder")
  670. RightHip = t:FindFirstChild("Right Hip")
  671. LeftHip = t:FindFirstChild("Left Hip")
  672. RootJoint = hrp
  673. Neck = t:FindFirstChild("Neck")
  674. end
  675. resetWelds = function(ext, occ) --extent 1-3; occlusion
  676. --1 == reset desiredangle/currentangle
  677. --2 == reset C0/C1
  678. --3 == reset both des/cur/c0/c1
  679. local r = {
  680. RightShoulder,
  681. LeftShoulder,
  682. RightHip,
  683. LeftHip,
  684. RootJoint,
  685. Neck,
  686. Grip
  687. }
  688. for _, v in pairs(r) do
  689. for i = 1, #occ do
  690. if occ[i] == v then
  691. table.remove(r, _)
  692. end
  693. end
  694. end
  695. for _, v in pairs(r) do
  696. if v.Name == "Right Shoulder" then
  697. if ext == 1 then
  698. v.DesiredAngle = 0
  699. v.CurrentAngle = 0
  700. elseif ext == 2 then
  701. v.C0 = RightShoulderC0
  702. v.C1 = RightShoulderC1
  703. elseif ext == 3 then
  704. v.DesiredAngle = 0
  705. v.CurrentAngle = 0
  706. v.C0 = RightShoulderC0
  707. v.C1 = RightShoulderC1
  708. end
  709. elseif v.Name == "Left Shoulder" then
  710. if ext == 1 then
  711. v.DesiredAngle = 0
  712. v.CurrentAngle = 0
  713. elseif ext == 2 then
  714. v.C0 = LeftShoulderC0
  715. v.C1 = LeftShoulderC1
  716. elseif ext == 3 then
  717. v.DesiredAngle = 0
  718. v.CurrentAngle = 0
  719. v.C0 = LeftShoulderC0
  720. v.C1 = LeftShoulderC1
  721. end
  722. elseif v.Name == "Right Hip" then
  723. if ext == 1 then
  724. v.DesiredAngle = 0
  725. v.CurrentAngle = 0
  726. elseif ext == 2 then
  727. v.C0 = RightHipC0
  728. v.C1 = RightHipC1
  729. elseif ext == 3 then
  730. v.DesiredAngle = 0
  731. v.CurrentAngle = 0
  732. v.C0 = RightHipC0
  733. v.C1 = RightHipC1
  734. end
  735. elseif v.Name == "Left Hip" then
  736. if ext == 1 then
  737. v.DesiredAngle = 0
  738. v.CurrentAngle = 0
  739. elseif ext == 2 then
  740. v.C0 = LeftHipC0
  741. v.C1 = LeftHipC1
  742. elseif ext == 3 then
  743. v.DesiredAngle = 0
  744. v.CurrentAngle = 0
  745. v.C0 = LeftHipC0
  746. v.C1 = LeftHipC1
  747. end
  748. elseif v.Name == "Neck" then
  749. if ext == 1 then
  750. v.DesiredAngle = 0
  751. v.CurrentAngle = 0
  752. elseif ext == 2 then
  753. v.C0 = NeckC0
  754. v.C1 = NeckC1
  755. elseif ext == 3 then
  756. v.DesiredAngle = 0
  757. v.CurrentAngle = 0
  758. v.C0 = NeckC0
  759. v.C1 = NeckC1
  760. end
  761. elseif v.Name == "RootJoint" then
  762. if ext == 1 then
  763. v.DesiredAngle = 0
  764. v.CurrentAngle = 0
  765. elseif ext == 2 then
  766. v.C0 = RootJointC0
  767. v.C1 = RootJointC1
  768. elseif ext == 3 then
  769. v.DesiredAngle = 0
  770. v.CurrentAngle = 0
  771. v.C0 = RootJointC0
  772. v.C1 = RootJointC1
  773. end
  774. elseif v.Name == "RightGrip" then
  775. if ext == 1 then
  776. elseif ext == 2 then
  777. Grip.C0 = nGrip.C0
  778. Grip.C1 = nGrip.C1
  779. elseif ext == 3 then
  780. Grip.C0 = nGrip.C0
  781. Grip.C1 = nGrip.C1
  782. end
  783. end
  784. end
  785. end
  786.  
  787.  
  788. doitdocdoit = function()
  789. if deb == false then
  790. return
  791. end
  792. deb = false
  793.  
  794. vPlayer = owner
  795. cPlayer = owner.Character
  796. Anim = owner.Animate
  797. Anim.Disabled = true
  798. Hum = owner.Humanoid
  799. Hum.Name = "NOPE"
  800. Hum.WalkSpeed = 0
  801. getWelds(cPlayer)
  802. resetWelds(3, {})
  803.  
  804. bodypos = Instance.new("BodyPosition")
  805. bodypos.P = 4000
  806. bodypos.maxForce = Vector3.new(5000000, 50000000, 5000000) * 5000
  807. bodypos.position = cPlayer.Torso.Position + Vector3.new(0, .5, 0)
  808. bodypos.Parent = cPlayer.Torso
  809.  
  810. dir = cPlayer.HumanoidRootPart.CFrame.lookVector
  811. CPlayer = cPlayer
  812. partpos = Instance.new("Part", workspace)
  813. partpos.Transparency = 1
  814. partpos.CanCollide = false
  815. partpos.Anchored = true
  816. partpos.CFrame = cPlayer.Torso.CFrame
  817.  
  818. sound = Instance.new("Sound")
  819. sound.Parent = partpos
  820. sound.Volume = 1
  821. sound.SoundId = "http://www.roblox.com/asset/?id=468760371"
  822. -- sound.SoundId="http://www.roblox.com/asset/?id=168009623"
  823. sound2 = Instance.new("Sound")
  824. sound2.Parent = workspace.CurrentCamera
  825. sound2.Volume = 1
  826. sound2.SoundId = "http://www.roblox.com/asset/?id=468760371"
  827. -- sound2.SoundId="http://www.roblox.com/asset/?id=168009623"
  828. sound:Play()
  829. sound2:Play()
  830. expected = 10
  831. did = false
  832. pooted = 0
  833. sos = game:GetService("RunService").Stepped:connect(function()
  834. pooted = pooted + 1
  835. if pooted >= expected + 1 then
  836. sos:disconnect()
  837. did = true
  838. return
  839. end
  840. resetWelds(3, {})
  841. RightShoulder.C0 = RightShoulder.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-pooted), math.rad(0), math.rad(0))
  842. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-pooted), math.rad(0), math.rad(0))
  843. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-pooted), math.rad(0), math.rad(0))
  844. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-pooted), math.rad(0), math.rad(0))
  845. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(0))
  846. RootJoint.C0 = RootJoint.C0 * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(0))
  847. end)
  848. --[[sound=Instance.new("Sound")
  849. sound.Parent=cPlayer.Torso
  850. sound.Volume=1
  851. sound.SoundId="http://www.roblox.com/asset/?id=316900066"
  852. sound:Play()]]--
  853. while did == false do
  854. wait()
  855. end
  856.  
  857. expected = 10
  858. did = false
  859. pooted = 0
  860. sos = game:GetService("RunService").Stepped:connect(function()
  861. pooted = pooted + 1
  862. if pooted >= expected + 1 then
  863. sos:disconnect()
  864. did = true
  865. return
  866. end
  867. resetWelds(3, {})
  868. RightShoulder.C0 = RightShoulder.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-12 - pooted * 8), math.rad(0), math.rad(pooted))
  869. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, pooted * .1) * CFrame.fromEulerAnglesXYZ(math.rad(-12 - pooted * 9), math.rad(pooted * 9), math.rad(0))
  870. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-12), math.rad(0), math.rad(0))
  871. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-12), math.rad(0), math.rad(0))
  872. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(pooted / 2), math.rad(0), math.rad(-pooted * 9))
  873. RootJoint.C0 = RootJoint.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-pooted), math.rad(pooted / 3), math.rad(pooted * 10))
  874. end)
  875. while did == false do
  876. wait()
  877. end
  878. wait(.2)
  879. expected = 5
  880. did = false
  881. pooted = 0
  882. nubhit = nil
  883. sos = game:GetService("RunService").Stepped:connect(function()
  884. pooted = pooted + 1
  885. if pooted >= expected + 1 then
  886. sos:disconnect()
  887. did = true
  888. return
  889. end
  890. resetWelds(3, {})
  891. RightShoulder.C0 = RightShoulder.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-12 - pooted * 8), math.rad(0), math.rad(pooted))
  892. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, pooted * .1) * CFrame.fromEulerAnglesXYZ(math.rad(-12 - pooted * 9), math.rad(pooted * 9), math.rad(0))
  893. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-12), math.rad(0), math.rad(0))
  894. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-12), math.rad(0), math.rad(0))
  895. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(5), math.rad(0), math.rad(-90 + pooted * 40))
  896. RootJoint.C0 = RootJoint.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-10 + pooted * 4), math.rad(3.3), math.rad(90 - pooted * 34))
  897. if nubhit == nil then
  898. bodypos.position = bodypos.position + dir * 4
  899. cPlayer.Torso.CFrame = CFrame.new(bodypos.position + dir * 4, bodypos.position + dir * 20)
  900. --bodypos.position=bodypos.position + dir*9
  901. --cPlayer.Torso.CFrame=CFrame.new(bodypos.position+dir*9,bodypos.position+dir*20)
  902. end
  903. if nubhit == nil and pooted >= 2 then
  904. pos = bodypos.position + dir * 2
  905. radi = 6
  906. for _, v in pairs(workspace:children()) do
  907. h = v:FindFirstChild("Humanoid")
  908. t = v:FindFirstChild("Torso")
  909. if h ~= nil and t ~= nil and v ~= cPlayer then
  910. if (t.Position - pos).magnitude <= radi then
  911. print(":>")
  912. nubhit = v
  913. break
  914. end
  915. end
  916. end
  917. end
  918. if nubhit ~= nil then
  919. if nubhit.Torso:FindFirstChild("PART1") == nil then
  920. v = Instance.new("BodyVelocity")
  921. v.P = 4000
  922. v.maxForce = Vector3.new(500000000000, 500000000000, 500000000000)
  923. v.velocity = dir * 4 + Vector3.new(0, 4, 0)
  924. v.Name = "PART1"
  925. v.Parent = nubhit.Torso
  926. game:GetService("Debris"):AddItem(v, 5)
  927. coroutine.resume(coroutine.create(function(v)
  928. for i = 1, 100 do
  929. v.velocity = v.velocity - Vector3.new(0, .07, 0)
  930. wait()
  931. end
  932. end), v)
  933. v = Instance.new("BodyGyro")
  934. v.P = 20
  935. v.D = 30
  936. v.maxTorque = Vector3.new(5000000, 5000000, 5000000)
  937. v.cframe = CPlayer.Torso.CFrame * CFrame.fromEulerAnglesXYZ(math.pi / 2, math.pi, 0)
  938. v.Name = "PART1"
  939. v.Parent = nubhit.Torso
  940. game:GetService("Debris"):AddItem(v, 5)
  941. end
  942. end
  943. end)
  944. while did == false do
  945. wait()
  946. end
  947. if nubhit == nil then
  948. sound:Stop()
  949. wait(.5)
  950. sound2:Stop()
  951. else
  952. expected = 32
  953. did = false
  954. pooted = 0
  955. sos = game:GetService("RunService").Stepped:connect(function()
  956. pooted = pooted + 1
  957. if pooted >= expected + 1 then
  958. sos:disconnect()
  959. did = true
  960. return
  961. end
  962. RightShoulder.C0 = RightShoulder.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-.03), math.rad(0), math.rad(.03))
  963. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, .02) * CFrame.fromEulerAnglesXYZ(math.rad(-.05), math.rad(.08), math.rad(0))
  964. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-.04), math.rad(0), math.rad(0))
  965. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-.04), math.rad(0), math.rad(0))
  966. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(.05), math.rad(0), math.rad(.1))
  967. RootJoint.C0 = RootJoint.C0 * CFrame.fromEulerAnglesXYZ(math.rad(.2), math.rad(0.05), math.rad(-.05))
  968. bodypos.position = bodypos.position + dir * .05
  969. cPlayer.Torso.CFrame = CFrame.new(bodypos.position + dir * .05, bodypos.position + dir * 20)
  970. end)
  971. while did == false do
  972. wait()
  973. end
  974. bodypos.Parent = nil
  975. expected = 12
  976. did = false
  977. pooted = 0
  978. sos = game:GetService("RunService").Stepped:connect(function()
  979. pooted = pooted + 1
  980. if pooted >= expected + 1 then
  981. sos:disconnect()
  982. did = true
  983. return
  984. end
  985. RightShoulder.C0 = RightShoulder.C0 * CFrame.fromEulerAnglesXYZ(math.rad(4.5), math.rad(0), math.rad(-.15))
  986. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, -.07) * CFrame.fromEulerAnglesXYZ(math.rad(5.6), math.rad(-4.5), math.rad(1.25))
  987. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(1.24), math.rad(0), math.rad(0))
  988. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(1.24), math.rad(0), math.rad(0))
  989. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(1), math.rad(-2.5), math.rad(-8))
  990. RootJoint.C0 = RootJoint.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-.5), math.rad(-.5), math.rad(7))
  991. end)
  992.  
  993. while did == false do
  994. wait()
  995. end
  996. expected = 6
  997. did = false
  998. pooted = 0
  999. sos = game:GetService("RunService").Stepped:connect(function()
  1000. pooted = pooted + 1
  1001. if pooted >= expected + 1 then
  1002. sos:disconnect()
  1003. did = true
  1004. return
  1005. end
  1006. resetWelds(3, {})
  1007. RightShoulder.C0 = RightShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(pooted * 5), math.rad(0), math.rad(pooted * 18))
  1008. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(pooted * 5), math.rad(0), math.rad(-pooted * 18))
  1009. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-pooted * 2), math.rad(0), math.rad(pooted * 6))
  1010. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-pooted * 2), math.rad(0), math.rad(-pooted * 6))
  1011. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(20 + pooted * 5), math.rad(0), math.rad(0))
  1012. RootJoint.C0 = RootJoint.C0 * CFrame.new(0, pooted * .03, -pooted * .1) * CFrame.fromEulerAnglesXYZ(math.rad(pooted * 6), math.rad(0), math.rad(pooted * 1))
  1013. print(":(")
  1014. end)
  1015. wait(.3)
  1016. while did == false do
  1017. wait()
  1018. end
  1019. resetWelds(3, {
  1020. "Neck"
  1021. })
  1022. expected = 5
  1023. did = false
  1024. pooted = 0
  1025. p = Instance.new("Part", workspace)
  1026. p.Name = "ORB"
  1027. p.TopSurface = 0
  1028. p.BottomSurface = 0
  1029. p.formFactor = "Custom"
  1030. p.CFrame = cPlayer.Torso.CFrame
  1031. m = Instance.new("SpecialMesh", p)
  1032. m.MeshType = "Sphere"
  1033. p.BrickColor = BrickColor:White()
  1034. p.Size = Vector3.new(1, 1, 1)
  1035. p.CanCollide = false
  1036. p.Anchored = true
  1037. game:GetService("Debris"):AddItem(p, 5)
  1038. coroutine.resume(coroutine.create(function(p)
  1039. nubhit.Torso.Anchored = true
  1040. for i = 1, 10 do
  1041. p.Mesh.Scale = p.Mesh.Scale + Vector3.new(5, 5, 5)
  1042. p.Transparency = .5 + i / 20
  1043. wait()
  1044. end
  1045. p:Remove()
  1046. end), p)
  1047. sos = game:GetService("RunService").Stepped:connect(function()
  1048. pooted = pooted + 1
  1049. if pooted >= expected + 1 then
  1050. sos:disconnect()
  1051. did = true
  1052. return
  1053. end
  1054. resetWelds(3, {})
  1055. RightShoulder.C0 = RightShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(-pooted * 10), math.rad(-pooted * 12), math.rad(pooted * 10))
  1056. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(-pooted * 10), math.rad(pooted * 12), math.rad(-pooted * 10))
  1057. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-pooted * 2), math.rad(0), math.rad(-pooted * 10))
  1058. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-pooted * 2), math.rad(0), math.rad(pooted * 9))
  1059. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(20 - pooted * 6), math.rad(0), math.rad(0))
  1060. RootJoint.C0 = RootJoint.C0 * CFrame.new(0, pooted * .03, -pooted * .1) * CFrame.fromEulerAnglesXYZ(math.rad(-pooted * 9.5), math.rad(0), math.rad(pooted * .2))
  1061. print(":(")
  1062. end)
  1063.  
  1064. while did == false do
  1065. wait()
  1066. end
  1067. wait(1)
  1068. expected = 5
  1069. did = false
  1070. pooted = 0
  1071. sos = game:GetService("RunService").Stepped:connect(function()
  1072. pooted = pooted + 1
  1073. if pooted >= expected + 1 then
  1074. sos:disconnect()
  1075. did = true
  1076. return
  1077. end
  1078. resetWelds(3, {})
  1079. RightShoulder.C0 = RightShoulder.C0 * CFrame.new(0, 0.05 * pooted, 0) * CFrame.fromEulerAnglesXYZ(math.rad(pooted * 2), math.rad(0), math.rad(pooted * 6))
  1080. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(pooted * 2), math.rad(0), math.rad(-pooted * 6))
  1081. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-pooted * 2), math.rad(0), math.rad(-57 + pooted * 20))
  1082. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-pooted * 2), math.rad(0), math.rad(57 - pooted * 20))
  1083. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(pooted * 4), math.rad(0), math.rad(0))
  1084. RootJoint.C0 = RootJoint.C0 * CFrame.new(0, 0, -.1 * pooted) * CFrame.fromEulerAnglesXYZ(math.rad(-57 + pooted * 20), math.rad(0), math.rad(0))
  1085. print(":(")
  1086. end)
  1087. while did == false do
  1088. wait()
  1089. end
  1090. wait(.8)
  1091. expected = 5
  1092. did = false
  1093. pooted = 0
  1094. bodypos.Parent = cPlayer.Torso
  1095. workspace.CurrentCamera.CameraType = "Follow"
  1096. sos = game:GetService("RunService").Stepped:connect(function()
  1097. pooted = pooted + 1
  1098. if pooted >= expected + 1 then
  1099. sos:disconnect()
  1100. did = true
  1101. return
  1102. end
  1103. RightShoulder.C0 = RightShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(-2), math.rad(0), math.rad(-3))
  1104. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(2), math.rad(0), math.rad(3))
  1105. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(1), math.rad(0), math.rad(-8))
  1106. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(1), math.rad(0), math.rad(8))
  1107. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-14), math.rad(0), math.rad(0))
  1108. RootJoint.C0 = RootJoint.C0 * CFrame.new(0, 0, .05) * CFrame.fromEulerAnglesXYZ(math.rad(-7), math.rad(0), math.rad(0))
  1109.  
  1110. bodypos.position = bodypos.position + Vector3.new(0, 240, 0)
  1111. cPlayer.Torso.CFrame = cPlayer.Torso.CFrame + Vector3.new(0, 240, 0)
  1112.  
  1113. print(":(")
  1114. end)
  1115. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1116. DIOPLS.SoundId = "rbxassetid://616582814"
  1117. DIOPLS.Volume = 1
  1118. DIOPLS:Play()
  1119. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1120. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1121. while did == false do
  1122. wait()
  1123. end
  1124.  
  1125. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1126. DIOPLS.SoundId = "rbxassetid://545622408"
  1127. DIOPLS.Volume = 1
  1128. DIOPLS:Play()
  1129. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1130. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1131. while did == false do
  1132. wait()
  1133. end
  1134.  
  1135. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1136. DIOPLS.SoundId = "rbxassetid://616582814"
  1137. DIOPLS.Volume = 1
  1138. DIOPLS:Play()
  1139. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1140. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1141. while did == false do
  1142. wait()
  1143. end
  1144.  
  1145. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1146. DIOPLS.SoundId = "rbxassetid://616582814"
  1147. DIOPLS.Volume = 1
  1148. DIOPLS:Play()
  1149. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1150. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1151. while did == false do
  1152. wait()
  1153. end
  1154.  
  1155. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1156. DIOPLS.SoundId = "rbxassetid://616582814"
  1157. DIOPLS.Volume = 1
  1158. DIOPLS:Play()
  1159. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1160. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1161. while did == false do
  1162. wait()
  1163. end
  1164.  
  1165. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1166. DIOPLS.SoundId = "rbxassetid://616582814"
  1167. DIOPLS.Volume = 1
  1168. DIOPLS:Play()
  1169. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1170. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1171. while did == false do
  1172. wait()
  1173. end
  1174.  
  1175. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1176. DIOPLS.SoundId = "rbxassetid://616582814"
  1177. DIOPLS.Volume = 1
  1178. DIOPLS:Play()
  1179. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1180. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1181. while did == false do
  1182. wait()
  1183. end
  1184.  
  1185. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1186. DIOPLS.SoundId = "rbxassetid://616582814"
  1187. DIOPLS.Volume = 1
  1188. DIOPLS:Play()
  1189. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1190. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1191. while did == false do
  1192. wait()
  1193. end
  1194.  
  1195. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1196. DIOPLS.SoundId = "rbxassetid://616582814"
  1197. DIOPLS.Volume = 1
  1198. DIOPLS:Play()
  1199. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1200. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1201. while did == false do
  1202. wait()
  1203. end
  1204.  
  1205. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1206. DIOPLS.SoundId = "rbxassetid://616582814"
  1207. DIOPLS.Volume = 1
  1208. DIOPLS:Play()
  1209. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1210. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1211. while did == false do
  1212. wait()
  1213. end
  1214.  
  1215. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1216. DIOPLS.SoundId = "rbxassetid://616582814"
  1217. DIOPLS.Volume = 1
  1218. DIOPLS:Play()
  1219. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1220. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1221. while did == false do
  1222. wait()
  1223. end
  1224.  
  1225. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1226. DIOPLS.SoundId = "rbxassetid://616582814"
  1227. DIOPLS.Volume = 1
  1228. DIOPLS:Play()
  1229. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1230. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1231. while did == false do
  1232. wait()
  1233. end
  1234.  
  1235. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1236. DIOPLS.SoundId = "rbxassetid://616582814"
  1237. DIOPLS.Volume = 1
  1238. DIOPLS:Play()
  1239. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1240. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1241. while did == false do
  1242. wait()
  1243. end
  1244.  
  1245. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1246. DIOPLS.SoundId = "rbxassetid://616582814"
  1247. DIOPLS.Volume = 1
  1248. DIOPLS:Play()
  1249. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1250. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1251. while did == false do
  1252. wait()
  1253. end
  1254.  
  1255. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1256. DIOPLS.SoundId = "rbxassetid://616582814"
  1257. DIOPLS.Volume = 1
  1258. DIOPLS:Play()
  1259. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1260. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1261. while did == false do
  1262. wait()
  1263. end
  1264.  
  1265. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1266. DIOPLS.SoundId = "rbxassetid://616582814"
  1267. DIOPLS.Volume = 1
  1268. DIOPLS:Play()
  1269. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1270. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1271. while did == false do
  1272. wait()
  1273. end
  1274.  
  1275. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1276. DIOPLS.SoundId = "rbxassetid://616582814"
  1277. DIOPLS.Volume = 1
  1278. DIOPLS:Play()
  1279. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1280. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1281. while did == false do
  1282. wait()
  1283. end
  1284.  
  1285. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1286. DIOPLS.SoundId = "rbxassetid://616582814"
  1287. DIOPLS.Volume = 1
  1288. DIOPLS:Play()
  1289. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1290. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1291. while did == false do
  1292. wait()
  1293. end
  1294.  
  1295. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1296. DIOPLS.SoundId = "rbxassetid://616582814"
  1297. DIOPLS.Volume = 1
  1298. DIOPLS:Play()
  1299. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1300. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1301. while did == false do
  1302. wait()
  1303. end
  1304.  
  1305. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1306. DIOPLS.SoundId = "rbxassetid://616582814"
  1307. DIOPLS.Volume = 1
  1308. DIOPLS:Play()
  1309. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1310. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1311. while did == false do
  1312. wait()
  1313. end
  1314.  
  1315. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1316. DIOPLS.SoundId = "rbxassetid://616582814"
  1317. DIOPLS.Volume = 1
  1318. DIOPLS:Play()
  1319. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1320. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1321. while did == false do
  1322. wait()
  1323. end
  1324.  
  1325. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1326. DIOPLS.SoundId = "rbxassetid://616582814"
  1327. DIOPLS.Volume = 1
  1328. DIOPLS:Play()
  1329. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1330. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1331. while did == false do
  1332. wait()
  1333. end
  1334.  
  1335. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1336. DIOPLS.SoundId = "rbxassetid://616582814"
  1337. DIOPLS.Volume = 1
  1338. DIOPLS:Play()
  1339. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1340. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1341. while did == false do
  1342. wait()
  1343. end
  1344.  
  1345. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1346. DIOPLS.SoundId = "rbxassetid://616582814"
  1347. DIOPLS.Volume = 1
  1348. DIOPLS:Play()
  1349. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1350. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1351. while did == false do
  1352. wait()
  1353. end
  1354.  
  1355. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1356. DIOPLS.SoundId = "rbxassetid://616582814"
  1357. DIOPLS.Volume = 1
  1358. DIOPLS:Play()
  1359. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1360. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1361. while did == false do
  1362. wait()
  1363. end
  1364.  
  1365. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1366. DIOPLS.SoundId = "rbxassetid://616582814"
  1367. DIOPLS.Volume = 1
  1368. DIOPLS:Play()
  1369. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1370. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1371. while did == false do
  1372. wait()
  1373. end
  1374.  
  1375. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1376. DIOPLS.SoundId = "rbxassetid://616582814"
  1377. DIOPLS.Volume = 1
  1378. DIOPLS:Play()
  1379. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1380. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1381. while did == false do
  1382. wait()
  1383. end
  1384.  
  1385. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1386. DIOPLS.SoundId = "rbxassetid://616582814"
  1387. DIOPLS.Volume = 1
  1388. DIOPLS:Play()
  1389. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1390. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1391. while did == false do
  1392. wait()
  1393. end
  1394.  
  1395. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1396. DIOPLS.SoundId = "rbxassetid://616582814"
  1397. DIOPLS.Volume = 1
  1398. DIOPLS:Play()
  1399. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1400. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1401. while did == false do
  1402. wait()
  1403. end
  1404.  
  1405. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1406. DIOPLS.SoundId = "rbxassetid://616582814"
  1407. DIOPLS.Volume = 1
  1408. DIOPLS:Play()
  1409. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1410. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1411. while did == false do
  1412. wait()
  1413. end
  1414.  
  1415. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1416. DIOPLS.SoundId = "rbxassetid://616582814"
  1417. DIOPLS.Volume = 1
  1418. DIOPLS:Play()
  1419. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1420. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1421. while did == false do
  1422. wait()
  1423. end
  1424.  
  1425. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1426. DIOPLS.SoundId = "rbxassetid://616582814"
  1427. DIOPLS.Volume = 1
  1428. DIOPLS:Play()
  1429. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1430. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1431. while did == false do
  1432. wait()
  1433. end
  1434.  
  1435. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1436. DIOPLS.SoundId = "rbxassetid://616582814"
  1437. DIOPLS.Volume = 1
  1438. DIOPLS:Play()
  1439. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1440. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1441. while did == false do
  1442. wait()
  1443. end
  1444.  
  1445. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1446. DIOPLS.SoundId = "rbxassetid://616582814"
  1447. DIOPLS.Volume = 1
  1448. DIOPLS:Play()
  1449. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1450. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1451. while did == false do
  1452. wait()
  1453. end
  1454.  
  1455. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1456. DIOPLS.SoundId = "rbxassetid://616582814"
  1457. DIOPLS.Volume = 1
  1458. DIOPLS:Play()
  1459. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1460. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1461. while did == false do
  1462. wait()
  1463. end
  1464.  
  1465. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1466. DIOPLS.SoundId = "rbxassetid://616582814"
  1467. DIOPLS.Volume = 1
  1468. DIOPLS:Play()
  1469. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1470. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1471. while did == false do
  1472. wait()
  1473. end
  1474.  
  1475. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1476. DIOPLS.SoundId = "rbxassetid://616582814"
  1477. DIOPLS.Volume = 1
  1478. DIOPLS:Play()
  1479. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1480. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1481. while did == false do
  1482. wait()
  1483. end
  1484.  
  1485. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1486. DIOPLS.SoundId = "rbxassetid://616582814"
  1487. DIOPLS.Volume = 1
  1488. DIOPLS:Play()
  1489. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1490. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1491. while did == false do
  1492. wait()
  1493. end
  1494.  
  1495. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1496. DIOPLS.SoundId = "rbxassetid://616582814"
  1497. DIOPLS.Volume = 1
  1498. DIOPLS:Play()
  1499. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1500. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1501. while did == false do
  1502. wait()
  1503. end
  1504.  
  1505. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1506. DIOPLS.SoundId = "rbxassetid://616582814"
  1507. DIOPLS.Volume = 1
  1508. DIOPLS:Play()
  1509. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1510. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1511. while did == false do
  1512. wait()
  1513. end
  1514.  
  1515. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1516. DIOPLS.SoundId = "rbxassetid://616582814"
  1517. DIOPLS.Volume = 1
  1518. DIOPLS:Play()
  1519. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1520. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1521. while did == false do
  1522. wait()
  1523. end
  1524.  
  1525. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1526. DIOPLS.SoundId = "rbxassetid://616582814"
  1527. DIOPLS.Volume = 1
  1528. DIOPLS:Play()
  1529. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1530. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1531. while did == false do
  1532. wait()
  1533. end
  1534.  
  1535. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1536. DIOPLS.SoundId = "rbxassetid://616582814"
  1537. DIOPLS.Volume = 1
  1538. DIOPLS:Play()
  1539. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1540. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1541. while did == false do
  1542. wait()
  1543. end
  1544.  
  1545. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1546. DIOPLS.SoundId = "rbxassetid://616582814"
  1547. DIOPLS.Volume = 1
  1548. DIOPLS:Play()
  1549. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1550. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1551. while did == false do
  1552. wait()
  1553. end
  1554.  
  1555. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1556. DIOPLS.SoundId = "rbxassetid://616582814"
  1557. DIOPLS.Volume = 1
  1558. DIOPLS:Play()
  1559. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1560. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1561. while did == false do
  1562. wait()
  1563. end
  1564.  
  1565. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1566. DIOPLS.SoundId = "rbxassetid://616582814"
  1567. DIOPLS.Volume = 1
  1568. DIOPLS:Play()
  1569. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1570. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1571. while did == false do
  1572. wait()
  1573. end
  1574.  
  1575. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1576. DIOPLS.SoundId = "rbxassetid://616582814"
  1577. DIOPLS.Volume = 1
  1578. DIOPLS:Play()
  1579. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1580. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1581. while did == false do
  1582. wait()
  1583. end
  1584.  
  1585. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1586. DIOPLS.SoundId = "rbxassetid://616582814"
  1587. DIOPLS.Volume = 1
  1588. DIOPLS:Play()
  1589. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1590. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1591. while did == false do
  1592. wait()
  1593. end
  1594.  
  1595. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1596. DIOPLS.SoundId = "rbxassetid://616582814"
  1597. DIOPLS.Volume = 1
  1598. DIOPLS:Play()
  1599. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1600. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1601. while did == false do
  1602. wait()
  1603. end
  1604.  
  1605. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1606. DIOPLS.SoundId = "rbxassetid://616582814"
  1607. DIOPLS.Volume = 1
  1608. DIOPLS:Play()
  1609. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1610. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1611. while did == false do
  1612. wait()
  1613. end
  1614.  
  1615. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1616. DIOPLS.SoundId = "rbxassetid://616582814"
  1617. DIOPLS.Volume = 1
  1618. DIOPLS:Play()
  1619. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1620. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1621. while did == false do
  1622. wait()
  1623. end
  1624.  
  1625. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1626. DIOPLS.SoundId = "rbxassetid://616582814"
  1627. DIOPLS.Volume = 1
  1628. DIOPLS:Play()
  1629. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1630. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1631. while did == false do
  1632. wait()
  1633. end
  1634.  
  1635. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1636. DIOPLS.SoundId = "rbxassetid://616582814"
  1637. DIOPLS.Volume = 1
  1638. DIOPLS:Play()
  1639. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1640. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1641. while did == false do
  1642. wait()
  1643. end
  1644.  
  1645. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1646. DIOPLS.SoundId = "rbxassetid://616582814"
  1647. DIOPLS.Volume = 1
  1648. DIOPLS:Play()
  1649. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1650. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1651. while did == false do
  1652. wait()
  1653. end
  1654.  
  1655. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1656. DIOPLS.SoundId = "rbxassetid://616582814"
  1657. DIOPLS.Volume = 1
  1658. DIOPLS:Play()
  1659. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1660. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1661. while did == false do
  1662. wait()
  1663. end
  1664.  
  1665. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1666. DIOPLS.SoundId = "rbxassetid://616582814"
  1667. DIOPLS.Volume = 1
  1668. DIOPLS:Play()
  1669. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1670. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1671. while did == false do
  1672. wait()
  1673. end
  1674.  
  1675. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1676. DIOPLS.SoundId = "rbxassetid://616582814"
  1677. DIOPLS.Volume = 1
  1678. DIOPLS:Play()
  1679. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1680. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1681. while did == false do
  1682. wait()
  1683. end
  1684.  
  1685. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1686. DIOPLS.SoundId = "rbxassetid://616582814"
  1687. DIOPLS.Volume = 1
  1688. DIOPLS:Play()
  1689. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1690. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1691. while did == false do
  1692. wait()
  1693. end
  1694.  
  1695. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1696. DIOPLS.SoundId = "rbxassetid://616582814"
  1697. DIOPLS.Volume = 1
  1698. DIOPLS:Play()
  1699. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1700. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1701. while did == false do
  1702. wait()
  1703. end
  1704.  
  1705. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1706. DIOPLS.SoundId = "rbxassetid://616582814"
  1707. DIOPLS.Volume = 1
  1708. DIOPLS:Play()
  1709. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1710. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1711. while did == false do
  1712. wait()
  1713. end
  1714.  
  1715. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1716. DIOPLS.SoundId = "rbxassetid://616582814"
  1717. DIOPLS.Volume = 1
  1718. DIOPLS:Play()
  1719. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1720. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1721. while did == false do
  1722. wait()
  1723. end
  1724.  
  1725. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1726. DIOPLS.SoundId = "rbxassetid://616582814"
  1727. DIOPLS.Volume = 1
  1728. DIOPLS:Play()
  1729. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1730. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1731. while did == false do
  1732. wait()
  1733. end
  1734.  
  1735. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1736. DIOPLS.SoundId = "rbxassetid://616582814"
  1737. DIOPLS.Volume = 1
  1738. DIOPLS:Play()
  1739. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1740. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1741. while did == false do
  1742. wait()
  1743. end
  1744.  
  1745. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1746. DIOPLS.SoundId = "rbxassetid://616582814"
  1747. DIOPLS.Volume = 1
  1748. DIOPLS:Play()
  1749. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1750. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1751. while did == false do
  1752. wait()
  1753. end
  1754.  
  1755. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1756. DIOPLS.SoundId = "rbxassetid://616582814"
  1757. DIOPLS.Volume = 1
  1758. DIOPLS:Play()
  1759. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1760. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1761. while did == false do
  1762. wait()
  1763. end
  1764.  
  1765. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1766. DIOPLS.SoundId = "rbxassetid://616582814"
  1767. DIOPLS.Volume = 1
  1768. DIOPLS:Play()
  1769. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1770. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1771. while did == false do
  1772. wait()
  1773. end
  1774.  
  1775. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1776. DIOPLS.SoundId = "rbxassetid://616582814"
  1777. DIOPLS.Volume = 1
  1778. DIOPLS:Play()
  1779. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1780. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1781. while did == false do
  1782. wait()
  1783. end
  1784.  
  1785. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1786. DIOPLS.SoundId = "rbxassetid://616582814"
  1787. DIOPLS.Volume = 1
  1788. DIOPLS:Play()
  1789. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1790. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1791. while did == false do
  1792. wait()
  1793. end
  1794.  
  1795. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1796. DIOPLS.SoundId = "rbxassetid://616582814"
  1797. DIOPLS.Volume = 1
  1798. DIOPLS:Play()
  1799. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1800. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1801. while did == false do
  1802. wait()
  1803. end
  1804.  
  1805. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1806. DIOPLS.SoundId = "rbxassetid://616582814"
  1807. DIOPLS.Volume = 1
  1808. DIOPLS:Play()
  1809. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1810. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1811. while did == false do
  1812. wait()
  1813. end
  1814.  
  1815. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1816. DIOPLS.SoundId = "rbxassetid://616582814"
  1817. DIOPLS.Volume = 1
  1818. DIOPLS:Play()
  1819. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1820. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1821. while did == false do
  1822. wait()
  1823. end
  1824.  
  1825. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1826. DIOPLS.SoundId = "rbxassetid://616582814"
  1827. DIOPLS.Volume = 1
  1828. DIOPLS:Play()
  1829. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1830. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1831. while did == false do
  1832. wait()
  1833. end
  1834.  
  1835. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1836. DIOPLS.SoundId = "rbxassetid://616582814"
  1837. DIOPLS.Volume = 1
  1838. DIOPLS:Play()
  1839. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1840. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1841. while did == false do
  1842. wait()
  1843. end
  1844.  
  1845. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1846. DIOPLS.SoundId = "rbxassetid://616582814"
  1847. DIOPLS.Volume = 1
  1848. DIOPLS:Play()
  1849. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1850. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1851. while did == false do
  1852. wait()
  1853. end
  1854.  
  1855. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1856. DIOPLS.SoundId = "rbxassetid://616582814"
  1857. DIOPLS.Volume = 1
  1858. DIOPLS:Play()
  1859. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1860. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1861. while did == false do
  1862. wait()
  1863. end
  1864.  
  1865. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1866. DIOPLS.SoundId = "rbxassetid://616582814"
  1867. DIOPLS.Volume = 1
  1868. DIOPLS:Play()
  1869. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1870. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1871. while did == false do
  1872. wait()
  1873. end
  1874.  
  1875. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1876. DIOPLS.SoundId = "rbxassetid://616582814"
  1877. DIOPLS.Volume = 1
  1878. DIOPLS:Play()
  1879. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1880. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1881. while did == false do
  1882. wait()
  1883. end
  1884.  
  1885. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1886. DIOPLS.SoundId = "rbxassetid://616582814"
  1887. DIOPLS.Volume = 1
  1888. DIOPLS:Play()
  1889. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1890. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1891. while did == false do
  1892. wait()
  1893. end
  1894.  
  1895. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1896. DIOPLS.SoundId = "rbxassetid://616582814"
  1897. DIOPLS.Volume = 1
  1898. DIOPLS:Play()
  1899. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1900. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1901. while did == false do
  1902. wait()
  1903. end
  1904.  
  1905. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1906. DIOPLS.SoundId = "rbxassetid://616582814"
  1907. DIOPLS.Volume = 1
  1908. DIOPLS:Play()
  1909. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1910. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1911. while did == false do
  1912. wait()
  1913. end
  1914.  
  1915. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1916. DIOPLS.SoundId = "rbxassetid://616582814"
  1917. DIOPLS.Volume = 1
  1918. DIOPLS:Play()
  1919. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1920. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1921. while did == false do
  1922. wait()
  1923. end
  1924.  
  1925. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1926. DIOPLS.SoundId = "rbxassetid://616582814"
  1927. DIOPLS.Volume = 1
  1928. DIOPLS:Play()
  1929. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1930. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1931. while did == false do
  1932. wait()
  1933. end
  1934.  
  1935. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1936. DIOPLS.SoundId = "rbxassetid://616582814"
  1937. DIOPLS.Volume = 1
  1938. DIOPLS:Play()
  1939. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1940. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1941. while did == false do
  1942. wait()
  1943. end
  1944.  
  1945. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1946. DIOPLS.SoundId = "rbxassetid://616582814"
  1947. DIOPLS.Volume = 1
  1948. DIOPLS:Play()
  1949. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1950. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1951. while did == false do
  1952. wait()
  1953. end
  1954.  
  1955. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1956. DIOPLS.SoundId = "rbxassetid://616582814"
  1957. DIOPLS.Volume = 1
  1958. DIOPLS:Play()
  1959. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1960. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1961. while did == false do
  1962. wait()
  1963. end
  1964.  
  1965. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1966. DIOPLS.SoundId = "rbxassetid://616582814"
  1967. DIOPLS.Volume = 1
  1968. DIOPLS:Play()
  1969. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1970. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1971. while did == false do
  1972. wait()
  1973. end
  1974.  
  1975. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1976. DIOPLS.SoundId = "rbxassetid://616582814"
  1977. DIOPLS.Volume = 1
  1978. DIOPLS:Play()
  1979. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1980. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1981. while did == false do
  1982. wait()
  1983. end
  1984.  
  1985. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1986. DIOPLS.SoundId = "rbxassetid://616582814"
  1987. DIOPLS.Volume = 1
  1988. DIOPLS:Play()
  1989. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  1990. game:GetService("Debris"):AddItem(DIOPLS, 19)
  1991. while did == false do
  1992. wait()
  1993. end
  1994.  
  1995. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  1996. DIOPLS.SoundId = "rbxassetid://616582814"
  1997. DIOPLS.Volume = 1
  1998. DIOPLS:Play()
  1999. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2000. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2001. while did == false do
  2002. wait()
  2003. end
  2004.  
  2005. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2006. DIOPLS.SoundId = "rbxassetid://616582814"
  2007. DIOPLS.Volume = 1
  2008. DIOPLS:Play()
  2009. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2010. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2011. while did == false do
  2012. wait()
  2013. end
  2014.  
  2015. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2016. DIOPLS.SoundId = "rbxassetid://616582814"
  2017. DIOPLS.Volume = 1
  2018. DIOPLS:Play()
  2019. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2020. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2021. while did == false do
  2022. wait()
  2023. end
  2024.  
  2025. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2026. DIOPLS.SoundId = "rbxassetid://616582814"
  2027. DIOPLS.Volume = 1
  2028. DIOPLS:Play()
  2029. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2030. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2031. while did == false do
  2032. wait()
  2033. end
  2034.  
  2035. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2036. DIOPLS.SoundId = "rbxassetid://616582814"
  2037. DIOPLS.Volume = 1
  2038. DIOPLS:Play()
  2039. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2040. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2041. while did == false do
  2042. wait()
  2043. end
  2044.  
  2045. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2046. DIOPLS.SoundId = "rbxassetid://616582814"
  2047. DIOPLS.Volume = 1
  2048. DIOPLS:Play()
  2049. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2050. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2051. while did == false do
  2052. wait()
  2053. end
  2054.  
  2055. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2056. DIOPLS.SoundId = "rbxassetid://616582814"
  2057. DIOPLS.Volume = 1
  2058. DIOPLS:Play()
  2059. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2060. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2061. while did == false do
  2062. wait()
  2063. end
  2064.  
  2065. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2066. DIOPLS.SoundId = "rbxassetid://616582814"
  2067. DIOPLS.Volume = 1
  2068. DIOPLS:Play()
  2069. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2070. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2071. while did == false do
  2072. wait()
  2073. end
  2074.  
  2075. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2076. DIOPLS.SoundId = "rbxassetid://616582814"
  2077. DIOPLS.Volume = 1
  2078. DIOPLS:Play()
  2079. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2080. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2081. while did == false do
  2082. wait()
  2083. end
  2084.  
  2085. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2086. DIOPLS.SoundId = "rbxassetid://616582814"
  2087. DIOPLS.Volume = 1
  2088. DIOPLS:Play()
  2089. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2090. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2091. while did == false do
  2092. wait()
  2093. end
  2094.  
  2095. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2096. DIOPLS.SoundId = "rbxassetid://616582814"
  2097. DIOPLS.Volume = 1
  2098. DIOPLS:Play()
  2099. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2100. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2101. while did == false do
  2102. wait()
  2103. end
  2104.  
  2105. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2106. DIOPLS.SoundId = "rbxassetid://616582814"
  2107. DIOPLS.Volume = 1
  2108. DIOPLS:Play()
  2109. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2110. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2111. while did == false do
  2112. wait()
  2113. end
  2114.  
  2115. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2116. DIOPLS.SoundId = "rbxassetid://616582814"
  2117. DIOPLS.Volume = 1
  2118. DIOPLS:Play()
  2119. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2120. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2121. while did == false do
  2122. wait()
  2123. end
  2124.  
  2125. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2126. DIOPLS.SoundId = "rbxassetid://616582814"
  2127. DIOPLS.Volume = 1
  2128. DIOPLS:Play()
  2129. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2130. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2131. while did == false do
  2132. wait()
  2133. end
  2134.  
  2135. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2136. DIOPLS.SoundId = "rbxassetid://616582814"
  2137. DIOPLS.Volume = 1
  2138. DIOPLS:Play()
  2139. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2140. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2141. while did == false do
  2142. wait()
  2143. end
  2144.  
  2145. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2146. DIOPLS.SoundId = "rbxassetid://616582814"
  2147. DIOPLS.Volume = 1
  2148. DIOPLS:Play()
  2149. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2150. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2151. while did == false do
  2152. wait()
  2153. end
  2154.  
  2155. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2156. DIOPLS.SoundId = "rbxassetid://616582814"
  2157. DIOPLS.Volume = 1
  2158. DIOPLS:Play()
  2159. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2160. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2161. while did == false do
  2162. wait()
  2163. end
  2164.  
  2165. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2166. DIOPLS.SoundId = "rbxassetid://616582814"
  2167. DIOPLS.Volume = 1
  2168. DIOPLS:Play()
  2169. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2170. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2171. while did == false do
  2172. wait()
  2173. end
  2174.  
  2175. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2176. DIOPLS.SoundId = "rbxassetid://616582814"
  2177. DIOPLS.Volume = 1
  2178. DIOPLS:Play()
  2179. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2180. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2181. while did == false do
  2182. wait()
  2183. end
  2184.  
  2185. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2186. DIOPLS.SoundId = "rbxassetid://616582814"
  2187. DIOPLS.Volume = 1
  2188. DIOPLS:Play()
  2189. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2190. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2191. while did == false do
  2192. wait()
  2193. end
  2194.  
  2195. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2196. DIOPLS.SoundId = "rbxassetid://616582814"
  2197. DIOPLS.Volume = 1
  2198. DIOPLS:Play()
  2199. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2200. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2201. while did == false do
  2202. wait()
  2203. end
  2204.  
  2205. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2206. DIOPLS.SoundId = "rbxassetid://616582814"
  2207. DIOPLS.Volume = 1
  2208. DIOPLS:Play()
  2209. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2210. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2211. while did == false do
  2212. wait()
  2213. end
  2214.  
  2215. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2216. DIOPLS.SoundId = "rbxassetid://616582814"
  2217. DIOPLS.Volume = 1
  2218. DIOPLS:Play()
  2219. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2220. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2221. while did == false do
  2222. wait()
  2223. end
  2224.  
  2225. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2226. DIOPLS.SoundId = "rbxassetid://616582814"
  2227. DIOPLS.Volume = 1
  2228. DIOPLS:Play()
  2229. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2230. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2231. while did == false do
  2232. wait()
  2233. end
  2234.  
  2235. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2236. DIOPLS.SoundId = "rbxassetid://616582814"
  2237. DIOPLS.Volume = 1
  2238. DIOPLS:Play()
  2239. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2240. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2241. while did == false do
  2242. wait()
  2243. end
  2244.  
  2245. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2246. DIOPLS.SoundId = "rbxassetid://616582814"
  2247. DIOPLS.Volume = 1
  2248. DIOPLS:Play()
  2249. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2250. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2251. while did == false do
  2252. wait()
  2253. end
  2254.  
  2255. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2256. DIOPLS.SoundId = "rbxassetid://616582814"
  2257. DIOPLS.Volume = 1
  2258. DIOPLS:Play()
  2259. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2260. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2261. while did == false do
  2262. wait()
  2263. end
  2264.  
  2265. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2266. DIOPLS.SoundId = "rbxassetid://616582814"
  2267. DIOPLS.Volume = 1
  2268. DIOPLS:Play()
  2269. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2270. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2271. while did == false do
  2272. wait()
  2273. end
  2274.  
  2275. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2276. DIOPLS.SoundId = "rbxassetid://616582814"
  2277. DIOPLS.Volume = 1
  2278. DIOPLS:Play()
  2279. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2280. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2281. while did == false do
  2282. wait()
  2283. end
  2284.  
  2285. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2286. DIOPLS.SoundId = "rbxassetid://616582814"
  2287. DIOPLS.Volume = 1
  2288. DIOPLS:Play()
  2289. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2290. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2291. while did == false do
  2292. wait()
  2293. end
  2294.  
  2295. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2296. DIOPLS.SoundId = "rbxassetid://616582814"
  2297. DIOPLS.Volume = 1
  2298. DIOPLS:Play()
  2299. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2300. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2301. while did == false do
  2302. wait()
  2303. end
  2304.  
  2305. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2306. DIOPLS.SoundId = "rbxassetid://616582814"
  2307. DIOPLS.Volume = 1
  2308. DIOPLS:Play()
  2309. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2310. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2311. while did == false do
  2312. wait()
  2313. end
  2314.  
  2315. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2316. DIOPLS.SoundId = "rbxassetid://616582814"
  2317. DIOPLS.Volume = 1
  2318. DIOPLS:Play()
  2319. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2320. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2321. while did == false do
  2322. wait()
  2323. end
  2324.  
  2325. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2326. DIOPLS.SoundId = "rbxassetid://616582814"
  2327. DIOPLS.Volume = 1
  2328. DIOPLS:Play()
  2329. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2330. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2331. while did == false do
  2332. wait()
  2333. end
  2334.  
  2335. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2336. DIOPLS.SoundId = "rbxassetid://616582814"
  2337. DIOPLS.Volume = 1
  2338. DIOPLS:Play()
  2339. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2340. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2341. while did == false do
  2342. wait()
  2343. end
  2344.  
  2345. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2346. DIOPLS.SoundId = "rbxassetid://616582814"
  2347. DIOPLS.Volume = 1
  2348. DIOPLS:Play()
  2349. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2350. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2351. while did == false do
  2352. wait()
  2353. end
  2354.  
  2355. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2356. DIOPLS.SoundId = "rbxassetid://616582814"
  2357. DIOPLS.Volume = 1
  2358. DIOPLS:Play()
  2359. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2360. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2361. while did == false do
  2362. wait()
  2363. end
  2364.  
  2365. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2366. DIOPLS.SoundId = "rbxassetid://616582814"
  2367. DIOPLS.Volume = 1
  2368. DIOPLS:Play()
  2369. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2370. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2371. while did == false do
  2372. wait()
  2373. end
  2374.  
  2375. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2376. DIOPLS.SoundId = "rbxassetid://616582814"
  2377. DIOPLS.Volume = 1
  2378. DIOPLS:Play()
  2379. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2380. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2381. while did == false do
  2382. wait()
  2383. end
  2384.  
  2385. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2386. DIOPLS.SoundId = "rbxassetid://616582814"
  2387. DIOPLS.Volume = 1
  2388. DIOPLS:Play()
  2389. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2390. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2391. while did == false do
  2392. wait()
  2393. end
  2394.  
  2395. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2396. DIOPLS.SoundId = "rbxassetid://616582814"
  2397. DIOPLS.Volume = 1
  2398. DIOPLS:Play()
  2399. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2400. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2401. while did == false do
  2402. wait()
  2403. end
  2404.  
  2405. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2406. DIOPLS.SoundId = "rbxassetid://616582814"
  2407. DIOPLS.Volume = 1
  2408. DIOPLS:Play()
  2409. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2410. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2411. while did == false do
  2412. wait()
  2413. end
  2414.  
  2415. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2416. DIOPLS.SoundId = "rbxassetid://616582814"
  2417. DIOPLS.Volume = 1
  2418. DIOPLS:Play()
  2419. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2420. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2421. while did == false do
  2422. wait()
  2423. end
  2424.  
  2425. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2426. DIOPLS.SoundId = "rbxassetid://616582814"
  2427. DIOPLS.Volume = 1
  2428. DIOPLS:Play()
  2429. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2430. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2431. while did == false do
  2432. wait()
  2433. end
  2434.  
  2435. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2436. DIOPLS.SoundId = "rbxassetid://616582814"
  2437. DIOPLS.Volume = 1
  2438. DIOPLS:Play()
  2439. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2440. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2441. while did == false do
  2442. wait()
  2443. end
  2444.  
  2445. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2446. DIOPLS.SoundId = "rbxassetid://616582814"
  2447. DIOPLS.Volume = 1
  2448. DIOPLS:Play()
  2449. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2450. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2451. while did == false do
  2452. wait()
  2453. end
  2454.  
  2455. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2456. DIOPLS.SoundId = "rbxassetid://616582814"
  2457. DIOPLS.Volume = 1
  2458. DIOPLS:Play()
  2459. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2460. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2461. while did == false do
  2462. wait()
  2463. end
  2464.  
  2465. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2466. DIOPLS.SoundId = "rbxassetid://616582814"
  2467. DIOPLS.Volume = 1
  2468. DIOPLS:Play()
  2469. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2470. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2471. while did == false do
  2472. wait()
  2473. end
  2474.  
  2475. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2476. DIOPLS.SoundId = "rbxassetid://616582814"
  2477. DIOPLS.Volume = 1
  2478. DIOPLS:Play()
  2479. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2480. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2481. while did == false do
  2482. wait()
  2483. end
  2484.  
  2485. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2486. DIOPLS.SoundId = "rbxassetid://616582814"
  2487. DIOPLS.Volume = 1
  2488. DIOPLS:Play()
  2489. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2490. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2491. while did == false do
  2492. wait()
  2493. end
  2494.  
  2495. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2496. DIOPLS.SoundId = "rbxassetid://616582814"
  2497. DIOPLS.Volume = 1
  2498. DIOPLS:Play()
  2499. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2500. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2501. while did == false do
  2502. wait()
  2503. end
  2504.  
  2505. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2506. DIOPLS.SoundId = "rbxassetid://616582814"
  2507. DIOPLS.Volume = 1
  2508. DIOPLS:Play()
  2509. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2510. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2511. while did == false do
  2512. wait()
  2513. end
  2514.  
  2515. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2516. DIOPLS.SoundId = "rbxassetid://616582814"
  2517. DIOPLS.Volume = 1
  2518. DIOPLS:Play()
  2519. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2520. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2521. while did == false do
  2522. wait()
  2523. end
  2524.  
  2525. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2526. DIOPLS.SoundId = "rbxassetid://616582814"
  2527. DIOPLS.Volume = 1
  2528. DIOPLS:Play()
  2529. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2530. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2531. while did == false do
  2532. wait()
  2533. end
  2534.  
  2535. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2536. DIOPLS.SoundId = "rbxassetid://616582814"
  2537. DIOPLS.Volume = 1
  2538. DIOPLS:Play()
  2539. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2540. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2541. while did == false do
  2542. wait()
  2543. end
  2544.  
  2545. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2546. DIOPLS.SoundId = "rbxassetid://616582814"
  2547. DIOPLS.Volume = 1
  2548. DIOPLS:Play()
  2549. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2550. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2551. while did == false do
  2552. wait()
  2553. end
  2554.  
  2555. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2556. DIOPLS.SoundId = "rbxassetid://616582814"
  2557. DIOPLS.Volume = 1
  2558. DIOPLS:Play()
  2559. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2560. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2561. while did == false do
  2562. wait()
  2563. end
  2564.  
  2565. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2566. DIOPLS.SoundId = "rbxassetid://616582814"
  2567. DIOPLS.Volume = 1
  2568. DIOPLS:Play()
  2569. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2570. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2571. while did == false do
  2572. wait()
  2573. end
  2574.  
  2575. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2576. DIOPLS.SoundId = "rbxassetid://616582814"
  2577. DIOPLS.Volume = 1
  2578. DIOPLS:Play()
  2579. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2580. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2581. while did == false do
  2582. wait()
  2583. end
  2584.  
  2585. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2586. DIOPLS.SoundId = "rbxassetid://616582814"
  2587. DIOPLS.Volume = 1
  2588. DIOPLS:Play()
  2589. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2590. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2591. while did == false do
  2592. wait()
  2593. end
  2594.  
  2595. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2596. DIOPLS.SoundId = "rbxassetid://616582814"
  2597. DIOPLS.Volume = 1
  2598. DIOPLS:Play()
  2599. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2600. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2601. while did == false do
  2602. wait()
  2603. end
  2604.  
  2605. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2606. DIOPLS.SoundId = "rbxassetid://616582814"
  2607. DIOPLS.Volume = 1
  2608. DIOPLS:Play()
  2609. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2610. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2611. while did == false do
  2612. wait()
  2613. end
  2614.  
  2615. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2616. DIOPLS.SoundId = "rbxassetid://616582814"
  2617. DIOPLS.Volume = 1
  2618. DIOPLS:Play()
  2619. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2620. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2621. while did == false do
  2622. wait()
  2623. end
  2624.  
  2625. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2626. DIOPLS.SoundId = "rbxassetid://616582814"
  2627. DIOPLS.Volume = 1
  2628. DIOPLS:Play()
  2629. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2630. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2631. while did == false do
  2632. wait()
  2633. end
  2634.  
  2635. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2636. DIOPLS.SoundId = "rbxassetid://616582814"
  2637. DIOPLS.Volume = 1
  2638. DIOPLS:Play()
  2639. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2640. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2641. while did == false do
  2642. wait()
  2643. end
  2644.  
  2645. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2646. DIOPLS.SoundId = "rbxassetid://616582814"
  2647. DIOPLS.Volume = 1
  2648. DIOPLS:Play()
  2649. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2650. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2651. while did == false do
  2652. wait()
  2653. end
  2654.  
  2655. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2656. DIOPLS.SoundId = "rbxassetid://616582814"
  2657. DIOPLS.Volume = 1
  2658. DIOPLS:Play()
  2659. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2660. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2661. while did == false do
  2662. wait()
  2663. end
  2664.  
  2665. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2666. DIOPLS.SoundId = "rbxassetid://616582814"
  2667. DIOPLS.Volume = 1
  2668. DIOPLS:Play()
  2669. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2670. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2671. while did == false do
  2672. wait()
  2673. end
  2674.  
  2675. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2676. DIOPLS.SoundId = "rbxassetid://616582814"
  2677. DIOPLS.Volume = 1
  2678. DIOPLS:Play()
  2679. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2680. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2681. while did == false do
  2682. wait()
  2683. end
  2684.  
  2685. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2686. DIOPLS.SoundId = "rbxassetid://616582814"
  2687. DIOPLS.Volume = 1
  2688. DIOPLS:Play()
  2689. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2690. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2691. while did == false do
  2692. wait()
  2693. end
  2694.  
  2695. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2696. DIOPLS.SoundId = "rbxassetid://616582814"
  2697. DIOPLS.Volume = 1
  2698. DIOPLS:Play()
  2699. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2700. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2701. while did == false do
  2702. wait()
  2703. end
  2704.  
  2705. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2706. DIOPLS.SoundId = "rbxassetid://616582814"
  2707. DIOPLS.Volume = 1
  2708. DIOPLS:Play()
  2709. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2710. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2711. while did == false do
  2712. wait()
  2713. end
  2714.  
  2715. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2716. DIOPLS.SoundId = "rbxassetid://616582814"
  2717. DIOPLS.Volume = 1
  2718. DIOPLS:Play()
  2719. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2720. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2721. while did == false do
  2722. wait()
  2723. end
  2724.  
  2725. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2726. DIOPLS.SoundId = "rbxassetid://616582814"
  2727. DIOPLS.Volume = 1
  2728. DIOPLS:Play()
  2729. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2730. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2731. while did == false do
  2732. wait()
  2733. end
  2734.  
  2735. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2736. DIOPLS.SoundId = "rbxassetid://616582814"
  2737. DIOPLS.Volume = 1
  2738. DIOPLS:Play()
  2739. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2740. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2741. while did == false do
  2742. wait()
  2743. end
  2744.  
  2745. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2746. DIOPLS.SoundId = "rbxassetid://616582814"
  2747. DIOPLS.Volume = 1
  2748. DIOPLS:Play()
  2749. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2750. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2751. while did == false do
  2752. wait()
  2753. end
  2754.  
  2755. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2756. DIOPLS.SoundId = "rbxassetid://616582814"
  2757. DIOPLS.Volume = 1
  2758. DIOPLS:Play()
  2759. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2760. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2761. while did == false do
  2762. wait()
  2763. end
  2764.  
  2765. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2766. DIOPLS.SoundId = "rbxassetid://616582814"
  2767. DIOPLS.Volume = 1
  2768. DIOPLS:Play()
  2769. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2770. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2771. while did == false do
  2772. wait()
  2773. end
  2774.  
  2775. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2776. DIOPLS.SoundId = "rbxassetid://616582814"
  2777. DIOPLS.Volume = 1
  2778. DIOPLS:Play()
  2779. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2780. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2781. while did == false do
  2782. wait()
  2783. end
  2784.  
  2785. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2786. DIOPLS.SoundId = "rbxassetid://616582814"
  2787. DIOPLS.Volume = 1
  2788. DIOPLS:Play()
  2789. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2790. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2791. while did == false do
  2792. wait()
  2793. end
  2794.  
  2795. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2796. DIOPLS.SoundId = "rbxassetid://616582814"
  2797. DIOPLS.Volume = 1
  2798. DIOPLS:Play()
  2799. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2800. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2801. while did == false do
  2802. wait()
  2803. end
  2804.  
  2805. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2806. DIOPLS.SoundId = "rbxassetid://616582814"
  2807. DIOPLS.Volume = 1
  2808. DIOPLS:Play()
  2809. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2810. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2811. while did == false do
  2812. wait()
  2813. end
  2814.  
  2815. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2816. DIOPLS.SoundId = "rbxassetid://616582814"
  2817. DIOPLS.Volume = 1
  2818. DIOPLS:Play()
  2819. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2820. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2821. while did == false do
  2822. wait()
  2823. end
  2824.  
  2825. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2826. DIOPLS.SoundId = "rbxassetid://616582814"
  2827. DIOPLS.Volume = 1
  2828. DIOPLS:Play()
  2829. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2830. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2831. while did == false do
  2832. wait()
  2833. end
  2834.  
  2835. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2836. DIOPLS.SoundId = "rbxassetid://616582814"
  2837. DIOPLS.Volume = 1
  2838. DIOPLS:Play()
  2839. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2840. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2841. while did == false do
  2842. wait()
  2843. end
  2844.  
  2845. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2846. DIOPLS.SoundId = "rbxassetid://616582814"
  2847. DIOPLS.Volume = 1
  2848. DIOPLS:Play()
  2849. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2850. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2851. while did == false do
  2852. wait()
  2853. end
  2854.  
  2855. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2856. DIOPLS.SoundId = "rbxassetid://616582814"
  2857. DIOPLS.Volume = 1
  2858. DIOPLS:Play()
  2859. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2860. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2861. while did == false do
  2862. wait()
  2863. end
  2864.  
  2865. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2866. DIOPLS.SoundId = "rbxassetid://616582814"
  2867. DIOPLS.Volume = 1
  2868. DIOPLS:Play()
  2869. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2870. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2871. while did == false do
  2872. wait()
  2873. end
  2874.  
  2875. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2876. DIOPLS.SoundId = "rbxassetid://616582814"
  2877. DIOPLS.Volume = 1
  2878. DIOPLS:Play()
  2879. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2880. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2881. while did == false do
  2882. wait()
  2883. end
  2884.  
  2885. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2886. DIOPLS.SoundId = "rbxassetid://616582814"
  2887. DIOPLS.Volume = 1
  2888. DIOPLS:Play()
  2889. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2890. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2891. while did == false do
  2892. wait()
  2893. end
  2894.  
  2895. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2896. DIOPLS.SoundId = "rbxassetid://616582814"
  2897. DIOPLS.Volume = 1
  2898. DIOPLS:Play()
  2899. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2900. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2901. while did == false do
  2902. wait()
  2903. end
  2904.  
  2905. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2906. DIOPLS.SoundId = "rbxassetid://616582814"
  2907. DIOPLS.Volume = 1
  2908. DIOPLS:Play()
  2909. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2910. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2911. while did == false do
  2912. wait()
  2913. end
  2914.  
  2915. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2916. DIOPLS.SoundId = "rbxassetid://616582814"
  2917. DIOPLS.Volume = 1
  2918. DIOPLS:Play()
  2919. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2920. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2921. while did == false do
  2922. wait()
  2923. end
  2924.  
  2925. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2926. DIOPLS.SoundId = "rbxassetid://616582814"
  2927. DIOPLS.Volume = 1
  2928. DIOPLS:Play()
  2929. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2930. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2931. while did == false do
  2932. wait()
  2933. end
  2934.  
  2935. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2936. DIOPLS.SoundId = "rbxassetid://616582814"
  2937. DIOPLS.Volume = 1
  2938. DIOPLS:Play()
  2939. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2940. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2941. while did == false do
  2942. wait()
  2943. end
  2944.  
  2945. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2946. DIOPLS.SoundId = "rbxassetid://616582814"
  2947. DIOPLS.Volume = 1
  2948. DIOPLS:Play()
  2949. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2950. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2951. while did == false do
  2952. wait()
  2953. end
  2954.  
  2955. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2956. DIOPLS.SoundId = "rbxassetid://616582814"
  2957. DIOPLS.Volume = 1
  2958. DIOPLS:Play()
  2959. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2960. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2961. while did == false do
  2962. wait()
  2963. end
  2964.  
  2965. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2966. DIOPLS.SoundId = "rbxassetid://616582814"
  2967. DIOPLS.Volume = 1
  2968. DIOPLS:Play()
  2969. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2970. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2971. while did == false do
  2972. wait()
  2973. end
  2974.  
  2975. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2976. DIOPLS.SoundId = "rbxassetid://616582814"
  2977. DIOPLS.Volume = 1
  2978. DIOPLS:Play()
  2979. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2980. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2981. while did == false do
  2982. wait()
  2983. end
  2984.  
  2985. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2986. DIOPLS.SoundId = "rbxassetid://616582814"
  2987. DIOPLS.Volume = 1
  2988. DIOPLS:Play()
  2989. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  2990. game:GetService("Debris"):AddItem(DIOPLS, 19)
  2991. while did == false do
  2992. wait()
  2993. end
  2994.  
  2995. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  2996. DIOPLS.SoundId = "rbxassetid://616582814"
  2997. DIOPLS.Volume = 1
  2998. DIOPLS:Play()
  2999. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  3000. game:GetService("Debris"):AddItem(DIOPLS, 19)
  3001. while did == false do
  3002. wait()
  3003. end
  3004.  
  3005. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  3006. DIOPLS.SoundId = "rbxassetid://616582814"
  3007. DIOPLS.Volume = 1
  3008. DIOPLS:Play()
  3009. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  3010. game:GetService("Debris"):AddItem(DIOPLS, 19)
  3011. while did == false do
  3012. wait()
  3013. end
  3014.  
  3015. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  3016. DIOPLS.SoundId = "rbxassetid://616582814"
  3017. DIOPLS.Volume = 1
  3018. DIOPLS:Play()
  3019. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  3020. game:GetService("Debris"):AddItem(DIOPLS, 19)
  3021. while did == false do
  3022. wait()
  3023. end
  3024.  
  3025. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  3026. DIOPLS.SoundId = "rbxassetid://616582814"
  3027. DIOPLS.Volume = 1
  3028. DIOPLS:Play()
  3029. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  3030. game:GetService("Debris"):AddItem(DIOPLS, 19)
  3031. while did == false do
  3032. wait()
  3033. end
  3034.  
  3035. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  3036. DIOPLS.SoundId = "rbxassetid://616582814"
  3037. DIOPLS.Volume = 1
  3038. DIOPLS:Play()
  3039. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  3040. game:GetService("Debris"):AddItem(DIOPLS, 19)
  3041. while did == false do
  3042. wait()
  3043. end
  3044.  
  3045. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  3046. DIOPLS.SoundId = "rbxassetid://616582814"
  3047. DIOPLS.Volume = 1
  3048. DIOPLS:Play()
  3049. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  3050. game:GetService("Debris"):AddItem(DIOPLS, 19)
  3051. while did == false do
  3052. wait()
  3053. end
  3054.  
  3055. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  3056. DIOPLS.SoundId = "rbxassetid://616582814"
  3057. DIOPLS.Volume = 1
  3058. DIOPLS:Play()
  3059. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  3060. game:GetService("Debris"):AddItem(DIOPLS, 19)
  3061. while did == false do
  3062. wait()
  3063. end
  3064.  
  3065. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  3066. DIOPLS.SoundId = "rbxassetid://616582814"
  3067. DIOPLS.Volume = 1
  3068. DIOPLS:Play()
  3069. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  3070. game:GetService("Debris"):AddItem(DIOPLS, 19)
  3071. while did == false do
  3072. wait()
  3073. end
  3074.  
  3075. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  3076. DIOPLS.SoundId = "rbxassetid://616582814"
  3077. DIOPLS.Volume = 1
  3078. DIOPLS:Play()
  3079. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  3080. game:GetService("Debris"):AddItem(DIOPLS, 19)
  3081. while did == false do
  3082. wait()
  3083. end
  3084.  
  3085. local DIOPLS = Instance.new("Sound", cPlayer.Torso)
  3086. DIOPLS.SoundId = "rbxassetid://616582814"
  3087. DIOPLS.Volume = 1
  3088. DIOPLS:Play()
  3089. Instance.new("DistortionSoundEffect", DIOPLS).Level = 50
  3090. game:GetService("Debris"):AddItem(DIOPLS, 19)
  3091. while did == false do
  3092. wait()
  3093. end
  3094.  
  3095. wait(.8)
  3096. LOL = Spawn()
  3097. LOL.Parent = workspace
  3098. LOL:MakeJoints()
  3099. LOL:MoveTo(cPlayer.Torso.CFrame.p)
  3100. C = LOL.Center
  3101. C.CFrame = CFrame.new(nubhit.Torso.Position + Vector3.new(0, 1200, 0)) * CFrame.new(8, 0, 0)
  3102.  
  3103. bb = Instance.new("BodyPosition")
  3104. bb.Parent = C
  3105. bb.maxForce = Vector3.new(50000000000000000, 50000000000000000, 50000000000000000)
  3106. bb.position = bb.Parent.Position
  3107. C.CFrame = CFrame.new(bb.position)
  3108. orig = bb.position
  3109.  
  3110. gg = Instance.new("BodyGyro")
  3111. gg.P = 15000
  3112. gg.D = 100
  3113. gg.maxTorque = Vector3.new(500000000, 500000000, 500000000)
  3114. gg.cframe = CFrame.new(C.Position, Vector3.new(nubhit.Torso.Position.x, C.Position.y, nubhit.Torso.Position.z)) * CFrame.fromEulerAnglesXYZ(-math.rad(10), math.rad(10), 0)
  3115. gg.Parent = C
  3116.  
  3117. expected = 80
  3118. did = false
  3119. pooted = 0
  3120.  
  3121. resetWelds(3, {})
  3122.  
  3123. Hum.PlatformStand = true
  3124.  
  3125. RightShoulder.C0 = RightShoulder.C0 * CFrame.new(0, .4, 0) * CFrame.fromEulerAnglesXYZ(math.rad(30), math.rad(0), math.rad(180))
  3126. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, .4, 0) * CFrame.fromEulerAnglesXYZ(math.rad(30), math.rad(0), math.rad(-180))
  3127. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-8), math.rad(0), math.rad(-8))
  3128. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-8), math.rad(0), math.rad(8))
  3129. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-45), math.rad(0), math.rad(0))
  3130. RootJoint.C0 = RootJoint.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(0))
  3131.  
  3132. bodypos.Parent = nil
  3133. w = Instance.new("Weld")
  3134. w.Part0 = C
  3135. w.Part1 = cPlayer.Torso
  3136. w.C0 = CFrame.new(.3, 5.6, -7) * CFrame.fromEulerAnglesXYZ(math.pi / .9, math.pi / 10, 0)
  3137. w.C0 = w.C0 * CFrame.fromEulerAnglesXYZ(0, 0, 0)
  3138. w.Parent = w.Part0
  3139.  
  3140. sos = game:GetService("RunService").Stepped:connect(function()
  3141. pooted = pooted + 1
  3142. if pooted >= expected + 1 then
  3143. sos:disconnect()
  3144. did = true
  3145. return
  3146. end
  3147.  
  3148. bb.position = orig - Vector3.new(0, 1202 / 80 * pooted, 0)
  3149. C.CFrame = C.CFrame - Vector3.new(0, 1202 / 80, 0)
  3150. print(":(")
  3151. end)
  3152.  
  3153. while did == false do
  3154. wait()
  3155. end
  3156. C.CFrame = CFrame.new(nubhit.Torso.Position + Vector3.new(0, 4, 0), Vector3.new(nubhit.Torso.Position.x, C.Position.y, nubhit.Torso.Position.z)) * CFrame.fromEulerAnglesXYZ(-math.rad(5), math.rad(5), 0)
  3157. C.CFrame = C.CFrame * CFrame.new(8, 0, 0)
  3158. bl2 = Instance.new("Part")
  3159. bl2.TopSurface = 0
  3160. bl2.BottomSurface = 0
  3161. bl2.CanCollide = false
  3162. bl2.formFactor = "Symmetric"
  3163. local ShockWaveSound = Instance.new("Sound", bl2)
  3164. ShockWaveSound.SoundId = "rbxassetid://138186576"
  3165. ShockWaveSound.Pitch = 0.8
  3166. ShockWaveSound.Volume = 1
  3167. ShockWaveSound:Play()
  3168. Instance.new("DistortionSoundEffect", ShockWaveSound).Level = 1
  3169. m = Instance.new("SpecialMesh")
  3170. m.MeshId = "http://www.roblox.com/asset/?id=20329976"
  3171. m.Scale = Vector3.new(1, 4, 1)
  3172. m.Parent = bl2
  3173. bl2.Size = Vector3.new(1, 1, 1)
  3174. bl2.Anchored = false
  3175. bl2.Name = "c"
  3176. bl2.CFrame = CFrame.new(C.Position) - Vector3.new(0, 2, 0)
  3177. bl2.BrickColor = BrickColor.new("White")
  3178. bl2.Parent = CPlayer
  3179. coroutine.resume(coroutine.create(function(p)
  3180. for i = 1, 10 do
  3181. p.Mesh.Scale = p.Mesh.Scale + Vector3.new(8, 0, 8)
  3182. p.Transparency = .25 + i * .075
  3183. p.CFrame = p.CFrame * CFrame.fromEulerAnglesXYZ(0, math.rad(5), 0)
  3184. wait()
  3185. end
  3186. p:Remove()
  3187. end), bl2)
  3188. bl2.Anchored = true
  3189.  
  3190. bl2 = Instance.new("Part")
  3191. bl2.TopSurface = 0
  3192. bl2.BottomSurface = 0
  3193. bl2.CanCollide = false
  3194. bl2.formFactor = "Symmetric"
  3195. m = Instance.new("SpecialMesh")
  3196. m.MeshId = "http://www.roblox.com/asset/?id=20329976"
  3197. m.Scale = Vector3.new(1, 6, 1)
  3198. m.Parent = bl2
  3199. bl2.Size = Vector3.new(1, 1, 1)
  3200. bl2.Anchored = false
  3201. bl2.Name = "c"
  3202. bl2.CFrame = CFrame.new(C.Position) - Vector3.new(0, 2, 0)
  3203. bl2.BrickColor = BrickColor.new("White")
  3204. bl2.Parent = CPlayer
  3205. coroutine.resume(coroutine.create(function(p)
  3206. for i = 1, 20 do
  3207. p.Mesh.Scale = p.Mesh.Scale + Vector3.new(6, 0, 6)
  3208. p.Transparency = i / 20
  3209. p.CFrame = p.CFrame * CFrame.fromEulerAnglesXYZ(0, math.rad(3), 0)
  3210. wait()
  3211. end
  3212. p:Remove()
  3213. end), bl2)
  3214. bl2.Anchored = true
  3215.  
  3216. gg.cframe = gg.cframe * CFrame.fromEulerAnglesXYZ(math.rad(10), -math.rad(10), 0)
  3217. expected = 3
  3218. did = false
  3219. pooted = 0
  3220. workspace.CurrentCamera.CameraType = "Follow"
  3221. sos = game:GetService("RunService").Stepped:connect(function()
  3222. pooted = pooted + 1
  3223. if pooted >= expected + 1 then
  3224. sos:disconnect()
  3225. did = true
  3226. return
  3227. end
  3228. RightShoulder.C0 = RightShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(0))
  3229. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(0))
  3230. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-4), math.rad(0), math.rad(0))
  3231. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(4), math.rad(0), math.rad(0))
  3232. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(0))
  3233. RootJoint.C0 = RootJoint.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(5), math.rad(0), math.rad(0))
  3234.  
  3235. w.C0 = w.C0 * CFrame.fromEulerAnglesXYZ(math.rad(15), 0, 0)
  3236.  
  3237. print(":(")
  3238. end)
  3239. while did == false do
  3240. wait()
  3241. end
  3242. wait(.3)
  3243. expected = 5
  3244. did = false
  3245. pooted = 0
  3246. workspace.CurrentCamera.CameraType = "Follow"
  3247. sos = game:GetService("RunService").Stepped:connect(function()
  3248. pooted = pooted + 1
  3249. if pooted >= expected + 1 then
  3250. sos:disconnect()
  3251. did = true
  3252. return
  3253. end
  3254. RightShoulder.C0 = RightShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(0))
  3255. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(0))
  3256. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(-8))
  3257. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(8))
  3258. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(5), math.rad(0), math.rad(0))
  3259. RootJoint.C0 = RootJoint.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(14), math.rad(0), math.rad(0))
  3260.  
  3261. w.C0 = w.C0 * CFrame.new(0, 0, -.04) * CFrame.fromEulerAnglesXYZ(math.rad(15), 0, 0)
  3262.  
  3263. print(":(")
  3264. end)
  3265. while did == false do
  3266. wait()
  3267. end
  3268. expected = 203
  3269. did = false
  3270. pooted = 0
  3271. workspace.CurrentCamera.CameraType = "Follow"
  3272. sos = game:GetService("RunService").Stepped:connect(function()
  3273. pooted = pooted + 1
  3274. if pooted >= expected + 1 then
  3275. sos:disconnect()
  3276. did = true
  3277. return
  3278. end
  3279. resetWelds(3, {
  3280. RightHip,
  3281. LeftHip,
  3282. RootJoint,
  3283. Neck
  3284. })
  3285. RightShoulder.C0 = RightShoulderC0 * CFrame.new(math.random(-20, 20) / 200, math.cos(time() * 30), math.random(-20, 20) / 200) * CFrame.fromEulerAnglesXYZ(math.sin(time() * 20) / 3, math.sin(time() * 20) / 5, math.rad(60) - math.cos(time() * 70) * 2)
  3286. LeftShoulder.C0 = LeftShoulderC0 * CFrame.new(math.random(-20, 20) / 200, math.cos(time() * 30), math.random(-20, 20) / 200) * CFrame.fromEulerAnglesXYZ(math.sin(time() * 20) / 3, math.sin(time() * 20) / 5, math.rad(-60) + math.sin(time() * 60) * 2)
  3287. RightHip.C0 = RightHipC0 * CFrame.fromEulerAnglesXYZ(math.rad(-18), math.rad(0), math.rad(-30))
  3288. LeftHip.C0 = LeftHipC0 * CFrame.fromEulerAnglesXYZ(math.rad(-18), math.rad(0), math.rad(30))
  3289. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(20), math.rad(0), math.rad(0))
  3290. RootJoint.C0 = RootJointC0 * CFrame.new(math.random(-20, 20) / 200, math.random(-20, 20) / 200, math.random(-20, 20) / 200) * CFrame.fromEulerAnglesXYZ(math.rad(80), math.rad(0), math.rad(0))
  3291. w.C0 = w.C0 * CFrame.new(math.random(-20, 20) / 2000, math.random(-20, 20) / 2000, math.random(-20, 20) / 2000) * CFrame.fromEulerAnglesXYZ(0, 0, 0)
  3292. C.CFrame = C.CFrame + Vector3.new(math.random(-20, 20) / 200, math.random(-20, 20) / 200, math.random(-20, 20) / 200)
  3293.  
  3294. if pooted / 2 == math.floor(pooted / 2) then
  3295. p = cPlayer["Right Arm"]:clone()
  3296. p.Anchored = true
  3297. p.CanCollide = false
  3298. p.Parent = workspace
  3299. p.Transparency = .5
  3300. game:GetService("Debris"):AddItem(p, .2)
  3301. p = cPlayer["Left Arm"]:clone()
  3302. p.Anchored = true
  3303. p.CanCollide = false
  3304. p.Parent = workspace
  3305. p.Transparency = .5
  3306. game:GetService("Debris"):AddItem(p, .2)
  3307.  
  3308. p = Instance.new("Part", workspace)
  3309. p.Name = "ORB"
  3310. p.TopSurface = 0
  3311. p.BottomSurface = 0
  3312. p.formFactor = "Custom"
  3313. p.CFrame = cPlayer.Torso.CFrame + cPlayer.Torso.CFrame.lookVector * 3 + Vector3.new(math.random(-20, 20) / 15, math.random(-20, 20) / 15 - .8, math.random(-20, 20) / 15)
  3314. m = Instance.new("SpecialMesh", p)
  3315. m.MeshType = "Sphere"
  3316. p.BrickColor = BrickColor:White()
  3317. p.Size = Vector3.new(.4, .4, .4)
  3318. p.CanCollide = false
  3319. p.Anchored = true
  3320. game:GetService("Debris"):AddItem(p, 5)
  3321. coroutine.resume(coroutine.create(function(p)
  3322. for i = 1, 8 do
  3323. p.Mesh.Scale = p.Mesh.Scale + Vector3.new(1, 1, 1)
  3324. p.Transparency = i / 8
  3325. wait()
  3326. end
  3327. p:Remove()
  3328. end), p)
  3329.  
  3330. end
  3331.  
  3332. print(":)")
  3333. end)
  3334. while did == false do
  3335. wait()
  3336. end
  3337. wait(.5)
  3338. expected = 20
  3339. did = false
  3340. pooted = 0
  3341. workspace.CurrentCamera.CameraType = "Follow"
  3342. sos = game:GetService("RunService").Stepped:connect(function()
  3343. pooted = pooted + 1
  3344. if pooted >= expected + 1 then
  3345. sos:disconnect()
  3346. did = true
  3347. return
  3348. end
  3349. resetWelds(3, {
  3350. Neck,
  3351. RootJoint,
  3352. RightHip,
  3353. LeftHip
  3354. })
  3355. RightShoulder.C0 = RightShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(2 * pooted), math.rad(0), math.rad(5 * pooted))
  3356. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(-9 * pooted))
  3357. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(-2))
  3358. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(4 * pooted))
  3359. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(2), math.rad(0), math.rad(2))
  3360. RootJoint.C0 = RootJoint.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(0))
  3361. w.C0 = w.C0 * CFrame.new(0, 0.03, .03) * CFrame.fromEulerAnglesXYZ(math.rad(2), math.rad(2), math.rad(0))
  3362. print(":)")
  3363. end)
  3364. while did == false do
  3365. wait()
  3366. end
  3367. wait(2)
  3368. expected = 5
  3369. did = false
  3370. pooted = 0
  3371. workspace.CurrentCamera.CameraType = "Follow"
  3372. w.Parent = nil
  3373. bodypos.position = cPlayer.Torso.Position - Vector3.new(0, 1, 0)
  3374. poo = cPlayer.Torso.CFrame.lookVector
  3375. cPlayer.Torso.CFrame = CFrame.new(cPlayer.Torso.Position, cPlayer.Torso.Position + C.CFrame.lookVector * 50)
  3376. bodypos.Parent = cPlayer.Torso
  3377. sos = game:GetService("RunService").Stepped:connect(function()
  3378. pooted = pooted + 1
  3379. if pooted >= expected + 1 then
  3380. sos:disconnect()
  3381. did = true
  3382. return
  3383. end
  3384. resetWelds(3, {})
  3385. RightShoulder.C0 = RightShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(80 - pooted * 35))
  3386. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(10), math.rad(0), math.rad(-190 + pooted * 28))
  3387. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(6), math.rad(0), math.rad(-80 + pooted * 4))
  3388. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(8), math.rad(0), math.rad(84 - pooted * 4))
  3389. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(20 + pooted * 10), math.rad(0), math.rad(0))
  3390. RootJoint.C0 = RootJoint.C0 * CFrame.new(0, 0, -pooted * .25) * CFrame.fromEulerAnglesXYZ(math.rad(-20 + pooted * 9), math.rad(0), math.rad(0))
  3391. print(":)")
  3392. end)
  3393. while did == false do
  3394. wait()
  3395. end
  3396. wait(.7)
  3397. expected = 5
  3398. did = false
  3399. pooted = 0
  3400. sos = game:GetService("RunService").Stepped:connect(function()
  3401. pooted = pooted + 1
  3402. if pooted >= expected + 1 then
  3403. sos:disconnect()
  3404. did = true
  3405. return
  3406. end
  3407. resetWelds(3, {})
  3408. RightShoulder.C0 = RightShoulder.C0 * CFrame.new(0, 0.05 * pooted, 0) * CFrame.fromEulerAnglesXYZ(math.rad(pooted * 2), math.rad(0), math.rad(pooted * 6))
  3409. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(pooted * 2), math.rad(0), math.rad(-pooted * 6))
  3410. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-pooted * 2), math.rad(0), math.rad(-57 + pooted * 20))
  3411. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-pooted * 2), math.rad(0), math.rad(57 - pooted * 20))
  3412. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(pooted * 4), math.rad(0), math.rad(0))
  3413. RootJoint.C0 = RootJoint.C0 * CFrame.new(0, 0, -.1 * pooted) * CFrame.fromEulerAnglesXYZ(math.rad(-57 + pooted * 20), math.rad(0), math.rad(0))
  3414. print(":(")
  3415. end)
  3416. while did == false do
  3417. wait()
  3418. end
  3419. wait(.2)
  3420. expected = 10
  3421. did = false
  3422. pooted = 0
  3423. workspace.CurrentCamera.CameraType = "Follow"
  3424. g = Instance.new("BodyGyro")
  3425. g.Parent = cPlayer.Torso
  3426. sos = game:GetService("RunService").Stepped:connect(function()
  3427. pooted = pooted + 1
  3428. if pooted >= expected + 1 then
  3429. sos:disconnect()
  3430. did = true
  3431. return
  3432. end
  3433. RightShoulder.C0 = RightShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(-2), math.rad(0), math.rad(-2))
  3434. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.rad(1), math.rad(0), math.rad(2))
  3435. RightHip.C0 = RightHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(1), math.rad(0), math.rad(-4))
  3436. LeftHip.C0 = LeftHip.C0 * CFrame.fromEulerAnglesXYZ(math.rad(1), math.rad(0), math.rad(4))
  3437. Neck.C0 = Neck.C0 * CFrame.fromEulerAnglesXYZ(math.rad(-7), math.rad(0), math.rad(0))
  3438. RootJoint.C0 = RootJoint.C0 * CFrame.new(0, 0, .05) * CFrame.fromEulerAnglesXYZ(math.rad(0), math.rad(0), math.rad(0))
  3439. if pooted >= 2 then
  3440. bodypos.position = bodypos.position + Vector3.new(0, 12, 0) - dir * 5
  3441. cPlayer.Torso.CFrame = cPlayer.Torso.CFrame + Vector3.new(0, 12, 0) - dir * 5
  3442. end
  3443. print(":(")
  3444. end)
  3445. while did == false do
  3446. wait()
  3447. end
  3448. wait(.2)
  3449. bodypos:Remove()
  3450. wait(.5)
  3451.  
  3452. e = Instance.new("Explosion")
  3453. e.BlastRadius = 30
  3454. e.Position = C.Position
  3455. e.BlastPressure = e.BlastPressure * 2.5
  3456. e.Parent = workspace
  3457. s = Instance.new("Sound", C)
  3458. s.SoundId = "rbxassetid://258057783"
  3459. s.Volume = 1
  3460. s:Play()
  3461. Instance.new("DistortionSoundEffect", s).Level = 1
  3462. g:Remove()
  3463. --dun
  3464. nubhit.Torso.Anchored = false
  3465. Hum.PlatformStand = false
  3466. C.Anchored = true
  3467.  
  3468. coroutine.resume(coroutine.create(function(t)
  3469. wait(3)
  3470. p = Instance.new("Sound")
  3471. p.SoundId = "http://www.roblox.com/asset/?id=154677261"
  3472. p.Parent = t
  3473. p.Volume = 1
  3474. p:Play()
  3475. end), C)
  3476. game:GetService("Debris"):AddItem(LOL, 5)
  3477. end
  3478. resetWelds(3, {})
  3479. workspace.CurrentCamera.CameraType = "Custom"
  3480. Hum.WalkSpeed = 16
  3481. Hum.Name = "Humanoid"
  3482. bodypos:Remove()
  3483. partpos:Remove()
  3484. Anim.Parent = nil
  3485. wait(.1)
  3486. Anim.Disabled = false
  3487. Anim.Parent = cPlayer
  3488. deb = true
  3489. end
  3490.  
  3491. Tool = Instance.new("HopperBin")
  3492. Tool.Name = "ROAD ROLLER DA"
  3493. Tool.Parent = owner.Backpack
  3494. Tool.Selected:connect(function(mouse)
  3495. mouse.Button1Down:connect(function()
  3496. doitdocdoit()
  3497. end)
  3498. end)
  3499.  
  3500. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement