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