SHOW:
|
|
- or go back to the newest paste.
1 | --[[User: TheDarkRevenant | |
2 | Script: Genkadda.txt | |
3 | Pass: E1IZVizJ]] | |
4 | ||
5 | ||
6 | --[[EDIT: Genkadda_Omega (WIP)]] | |
7 | ||
8 | -- Messy atm, will clean up when finished | |
9 | ||
10 | --[[Thank you to Fang and Asriel/Frisk for helping fix cero and adding the nightshift blast]] | |
11 | --[[Thanks to PixelFire for the gauntlet]] | |
12 | ||
13 | --[[ TODO List: | |
14 | ||
15 | Fix Cero beam angle (it's a bit off compared to the other one) | |
16 | Redo some animations entirely | |
17 | Make a toggle for turning future voice sfx on/off(?) | |
18 | More attacks, including alternate attacks when dashing | |
19 | Add a throw | |
20 | Fix animation while flying with someone grabbed | |
21 | ||
22 | ||
23 | Changes: | |
24 | ||
25 | - Added a boosted/holy mode that can be toggled with H | |
26 | - While in this mode, attacks are more varied and powerful | |
27 | - Different dashing animation | |
28 | - Other effects, will make a complete list when | |
29 | ||
30 | - Added Cero Beam and Nightshift Blast from Zerioth | |
31 | - Added other, larger beam | |
32 | - Made the standard two swipes with q actually hit both times | |
33 | - Probably more I forgot | |
34 | ||
35 | Controls: | |
36 | ||
37 | Q = Swing sword twice | |
38 | E = Slap | |
39 | R = Overhead downwards swing | |
40 | T = Pelvic thrust | |
41 | Y = Nightshift blast | |
42 | G = Spinning attack | |
43 | C = Cero beam | |
44 | V = Large beam | |
45 | Z = Grab | |
46 | Left Ctrl = Sprint/Dash | |
47 | F = Toggle flight | |
48 | ||
49 | H = Switch between dark/light mode | |
50 | ||
51 | ||
52 | ]] | |
53 | ||
54 | ||
55 | local p = game.Players.LocalPlayer | |
56 | local char = p.Character | |
57 | local mouse = p:GetMouse() | |
58 | local larm = char["Left Arm"] | |
59 | local rarm = char["Right Arm"] | |
60 | local lleg = char["Left Leg"] | |
61 | local rleg = char["Right Leg"] | |
62 | local hed = char.Head | |
63 | local torso = char.Torso | |
64 | local hum = char.Humanoid | |
65 | local cam = game.Workspace.CurrentCamera | |
66 | local root = char.HumanoidRootPart | |
67 | local deb = false | |
68 | local CanAttack = true | |
69 | local shot = 0 | |
70 | local animpose = "Idle" | |
71 | local lastanimpose = "Idle" | |
72 | local stanceToggle = "Normal" | |
73 | local l = game:GetService("Lighting") | |
74 | local rs = game:GetService("RunService").RenderStepped | |
75 | math.randomseed(os.time()) | |
76 | hum.MaxHealth = 9001 | |
77 | wait(1) | |
78 | hum.Health = 9001 | |
79 | ||
80 | for i,v in pairs (hed:GetChildren()) do | |
81 | if v:IsA("Sound") then | |
82 | v:Destroy() | |
83 | end | |
84 | end | |
85 | --game:service'InsertService':LoadAsset(16469427):children()[1].Parent = char | |
86 | --char.Reaper.Handle.Mesh.TextureId = "http://www.roblox.com/asset/?id=176349813" | |
87 | ||
88 | ---------------------------------------------------- | |
89 | --[[Additional Variables]] | |
90 | ||
91 | ||
92 | ||
93 | ||
94 | ||
95 | local lightspeed = math.random(0.1,0.2) | |
96 | local holy = false -- Is in holy/angel of death form? | |
97 | local eColors = {"Deep orange", "Really black"} | |
98 | local idz = {"161006212", "161006195"} | |
99 | local Effects={} | |
100 | ||
101 | ||
102 | hs = Instance.new("Sound",torso) | |
103 | hs.SoundId = "http://www.roblox.com/asset/?id=500841625" | |
104 | - | hs.Pitch = 1.2 |
104 | + | hs.Pitch = 1 |
105 | - | hs.Volume = 0 |
105 | + | hs.Volume = 1 |
106 | hs.Looped = true | |
107 | ||
108 | ds = Instance.new("Sound",torso) | |
109 | ds.SoundId = "http://roblox.com/asset/?id=500841625" | |
110 | - | ds.Pitch = 0.3 |
110 | + | ds.Pitch = 1 |
111 | - | ds.Volume = 0 |
111 | + | ds.Volume = 1 |
112 | ds.Looped = true | |
113 | ||
114 | ---------------------------------------------------- | |
115 | z = Instance.new("Sound", torso) | |
116 | z.SoundId = "rbxassetid://206153677"-- Cartton Imortallity :381955589 -- My Heart: 154299074 -- Sao Crossing: 246056418 -- SAN HOLO DOnkeykong: 246056418 -- "Innocence" - Sword Art Online OP 2: 142357253 -- OnePunch Hero: 339250412 (Fav) -- Sethbling: 170902050 | |
117 | z.Looped = true | |
118 | z.Volume = 1 | |
119 | wait(.1) | |
120 | z:Play() | |
121 | ---------------------------------------------------- | |
122 | ||
123 | ||
124 | ds:play() | |
125 | ||
126 | ||
127 | if holy == false then | |
128 | eColors = {"Deep orange", "Really black"} | |
129 | else if holy == true then | |
130 | eColors = {"Cyan"} | |
131 | end | |
132 | end | |
133 | ||
134 | ||
135 | ||
136 | ||
137 | ||
138 | ---------------------------------------------------- | |
139 | --[[Additional Functions]] | |
140 | ||
141 | cf=CFrame.new | |
142 | vt=Vector3.new | |
143 | ||
144 | function swait(num) | |
145 | if num==0 or num==nil then | |
146 | game:service'RunService'.Stepped:wait(0) | |
147 | else | |
148 | for i=0,num do | |
149 | game:service'RunService'.Stepped:wait(0) | |
150 | end | |
151 | end | |
152 | end | |
153 | ||
154 | so = function(id,par,vol,pit) | |
155 | coroutine.resume(coroutine.create(function() | |
156 | local sou = Instance.new("Sound",par or workspace) | |
157 | sou.Volume=vol | |
158 | sou.Pitch=pit or 1 | |
159 | sou.SoundId=id | |
160 | swait() | |
161 | sou:play() | |
162 | game:GetService("Debris"):AddItem(sou,6) | |
163 | end)) | |
164 | end | |
165 | ||
166 | ||
167 | ||
168 | ||
169 | ||
170 | ---------------------------------------------------- | |
171 | Debounces = { | |
172 | CanAttack = true; | |
173 | CanJoke = true; | |
174 | NoIdl = false; | |
175 | Slashing = false; | |
176 | Slashed = false; | |
177 | Slapping = false; | |
178 | Slapped = false; | |
179 | ks = false; | |
180 | } | |
181 | ||
182 | local Touche = {char.Name, } | |
183 | ---------------------------------------------------- | |
184 | function HasntTouched(plrname) | |
185 | local ret = true | |
186 | for _, v in pairs(Touche) do | |
187 | if v == plrname then | |
188 | ret = false | |
189 | end | |
190 | end | |
191 | return ret | |
192 | end | |
193 | ---------------------------------------------------- | |
194 | function weld5(part0, part1, c0, c1) | |
195 | weeld=Instance.new("Weld", part0) | |
196 | weeld.Part0=part0 | |
197 | weeld.Part1=part1 | |
198 | weeld.C0=c0 | |
199 | weeld.C1=c1 | |
200 | return weeld | |
201 | end | |
202 | ---------------------------------------------------- | |
203 | mod=Instance.new('Model',char) | |
204 | ||
205 | function Burst() | |
206 | part=Instance.new('Part',mod) | |
207 | part.Anchored=true | |
208 | part.CanCollide=false | |
209 | part.FormFactor='Custom' | |
210 | part.Size=Vector3.new(.2,.2,.2) | |
211 | part.CFrame=root.CFrame*CFrame.new(0,1,0)*CFrame.Angles(math.rad(90),0,0) | |
212 | part.Transparency=.7 | |
213 | ||
214 | if holy ~= true then | |
215 | part.BrickColor=BrickColor.new('Really black') | |
216 | else | |
217 | part.BrickColor=BrickColor.new('Cyan') | |
218 | end | |
219 | ||
220 | mesh=Instance.new('SpecialMesh',part) | |
221 | mesh.MeshId='http://www.roblox.com/asset/?id=20329976' | |
222 | mesh.Scale=Vector3.new(10,5,10) | |
223 | part2=part:clone() | |
224 | part2.Parent=mod | |
225 | ||
226 | if holy ~= true then | |
227 | part2.BrickColor=BrickColor.new('Deep orange') | |
228 | else | |
229 | part2.BrickColor=BrickColor.new('Cyan') | |
230 | end | |
231 | ||
232 | mesh2=mesh:clone() | |
233 | mesh2.Parent=part2 | |
234 | mesh2.Scale=Vector3.new(5,2.5,5) | |
235 | coroutine.resume(coroutine.create(function() | |
236 | for i=0,1,0.1 do | |
237 | wait() | |
238 | part.CFrame=part.CFrame | |
239 | part.Transparency=i | |
240 | mesh.Scale=mesh.Scale+Vector3.new(1,1,1) | |
241 | part2.CFrame=part2.CFrame | |
242 | part2.Transparency=i | |
243 | mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1) | |
244 | end | |
245 | part.Parent=nil | |
246 | part2.Parent=nil | |
247 | end)) | |
248 | end | |
249 | ---------------------------------------------------- | |
250 | mod4 = Instance.new("Model",char) | |
251 | ||
252 | ptez = {0.7, 0.8, 0.9, 1} | |
253 | ||
254 | function FindNearestTorso(Position,Distance,SinglePlayer) | |
255 | if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end | |
256 | local List = {} | |
257 | for i,v in pairs(workspace:GetChildren())do | |
258 | if v:IsA("Model")then | |
259 | if v:findFirstChild("Torso")then | |
260 | if v ~= char then | |
261 | if(v.Torso.Position -Position).magnitude <= Distance then | |
262 | table.insert(List,v) | |
263 | end | |
264 | end | |
265 | end | |
266 | end | |
267 | end | |
268 | return List | |
269 | end | |
270 | ||
271 | function Slam() | |
272 | part=Instance.new('Part',mod4) | |
273 | part.Anchored=true | |
274 | part.CanCollide=false | |
275 | part.FormFactor='Custom' | |
276 | part.Size=Vector3.new(.2,.2,.2) | |
277 | part.CFrame=root.CFrame*CFrame.new(0,-2.8,-1.4)*CFrame.Angles(math.rad(90),0,0) | |
278 | part.Transparency=.7 | |
279 | ||
280 | if holy ~= true then | |
281 | part.BrickColor=BrickColor.new('Really black') | |
282 | else | |
283 | part.BrickColor=BrickColor.new('Cyan') | |
284 | end | |
285 | ||
286 | mesh=Instance.new('SpecialMesh',part) | |
287 | mesh.MeshId='http://www.roblox.com/asset/?id=3270017' | |
288 | mesh.Scale=Vector3.new(3,3,3) | |
289 | part2=Instance.new('Part',mod4) | |
290 | part2.Anchored=true | |
291 | part2.CanCollide=false | |
292 | part2.FormFactor='Custom' | |
293 | part2.Size=Vector3.new(.2,.2,.2) | |
294 | part2.CFrame=root.CFrame*CFrame.new(0,-2.4,-1.6) | |
295 | part2.Transparency=.7 | |
296 | ||
297 | if holy ~= true then | |
298 | part2.BrickColor=BrickColor.new('Deep orange') | |
299 | else | |
300 | part2.BrickColor=BrickColor.new('Cyan') | |
301 | end | |
302 | ||
303 | mesh2=Instance.new('SpecialMesh',part2) | |
304 | mesh2.MeshId='http://www.roblox.com/asset/?id=20329976' | |
305 | mesh2.Scale=Vector3.new(3,1.5,3) | |
306 | x = Instance.new("Sound",char) | |
307 | x.SoundId = "http://www.roblox.com/asset/?id=142070127" | |
308 | x.Pitch = ptez[math.random(1,#ptez)] | |
309 | x.Volume = 1 | |
310 | wait(.1) | |
311 | x1 = Instance.new("Sound",char) | |
312 | x1.SoundId = "http://www.roblox.com/asset/?id=206082327" | |
313 | x1.Pitch = ptez[math.random(1,#ptez)] | |
314 | x1.Volume = 1 | |
315 | wait(.1) | |
316 | x:Play() | |
317 | x1:Play() | |
318 | for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do | |
319 | if v:FindFirstChild('Humanoid') then | |
320 | v.Humanoid:TakeDamage(math.random(99999999,99999999)) | |
321 | end | |
322 | end | |
323 | coroutine.resume(coroutine.create(function() | |
324 | for i=0,0.62,0.13 do | |
325 | wait() | |
326 | part.CFrame=part.CFrame | |
327 | part.Transparency=i | |
328 | mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4) | |
329 | part2.CFrame=part2.CFrame | |
330 | part2.Transparency=i | |
331 | mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4) | |
332 | end | |
333 | part.Parent=nil | |
334 | part2.Parent=nil | |
335 | x:Destroy() | |
336 | end)) | |
337 | end | |
338 | ----------------------------------------------------PUNCH FUNC | |
339 | function Punch() | |
340 | part=Instance.new('Part',mod4) | |
341 | part.Anchored=true | |
342 | part.CanCollide=false | |
343 | part.FormFactor='Custom' | |
344 | part.Size=Vector3.new(.2,.2,.2) | |
345 | part.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(0),0,0) | |
346 | part.Transparency=.7 | |
347 | ||
348 | part.BrickColor=BrickColor.new('Really black') | |
349 | mesh=Instance.new('SpecialMesh',part) | |
350 | mesh.MeshId='http://www.roblox.com/asset/?id=3270017' | |
351 | mesh.Scale=Vector3.new(3,3,3) | |
352 | part2=Instance.new('Part',mod4) | |
353 | part2.Anchored=true | |
354 | part2.CanCollide=false | |
355 | ||
356 | part2.FormFactor='Custom' | |
357 | part2.Size=Vector3.new(.2,.2,.2) | |
358 | part2.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(90),0,0) | |
359 | part2.Transparency=.7 | |
360 | part2.BrickColor=BrickColor.new('Deep orange') | |
361 | mesh2=Instance.new('SpecialMesh',part2) | |
362 | mesh2.MeshId='http://www.roblox.com/asset/?id=20329976' | |
363 | mesh2.Scale=Vector3.new(3,1.5,3) | |
364 | for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do | |
365 | if v:FindFirstChild('Humanoid') then | |
366 | v.Humanoid:TakeDamage(math.random(20000000,60000000)) | |
367 | end | |
368 | end | |
369 | coroutine.resume(coroutine.create(function() | |
370 | for i=0,0.62,0.4 do | |
371 | wait() | |
372 | part.CFrame=part.CFrame | |
373 | part.Transparency=i | |
374 | mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4) | |
375 | part2.CFrame=part2.CFrame | |
376 | part2.Transparency=i | |
377 | mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4) | |
378 | end | |
379 | part.Parent=nil | |
380 | part2.Parent=nil | |
381 | end)) | |
382 | end | |
383 | ---------------------------------------------------- | |
384 | GroundWave = function() | |
385 | local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0)) | |
386 | local Colors = {"Deep orange", "Really black"} | |
387 | local wave = Instance.new("Part", torso) | |
388 | ||
389 | if holy == false then | |
390 | wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)]) | |
391 | else | |
392 | wave.BrickColor = BrickColor.new("Cyan") | |
393 | end | |
394 | ||
395 | wave.Anchored = true | |
396 | wave.CanCollide = false | |
397 | wave.Material = "Neon" | |
398 | wave.Locked = true | |
399 | wave.Size = Vector3.new(1, 1, 1) | |
400 | wave.TopSurface = "Smooth" | |
401 | wave.BottomSurface = "Smooth" | |
402 | wave.Transparency = 0.35 | |
403 | wave.CFrame = HandCF | |
404 | wm = Instance.new("SpecialMesh", wave) | |
405 | wm.MeshId = "rbxassetid://3270017" | |
406 | coroutine.wrap(function() | |
407 | for i = 1, 14, 1 do | |
408 | wm.Scale = Vector3.new(1 + i*1.1, 1 + i*1.1, 1) | |
409 | wave.Size = wm.Scale | |
410 | wave.CFrame = HandCF | |
411 | wave.Transparency = i/14 | |
412 | wait() | |
413 | end | |
414 | wait() | |
415 | wave:Destroy() | |
416 | end)() | |
417 | end | |
418 | ---------------------------------------------------- | |
419 | Magik = function() | |
420 | Spawn(function() | |
421 | local function lerp(a,b,c) | |
422 | return a+(b-a)*c | |
423 | end | |
424 | local function rndRange(rng) | |
425 | return math.random(-rng*1000,rng*1000)/1000 | |
426 | end | |
427 | local magik = Instance.new("Part", larm) | |
428 | local Colors = {"Deep orange", "Really black"} | |
429 | magik.Anchored = true | |
430 | magik.Locked = true | |
431 | magik.Material = "Neon" | |
432 | magik.FormFactor = "Custom" | |
433 | magik.Size = Vector3.new(1.2, 1.2, 1.2) | |
434 | magik.TopSurface = "Smooth" | |
435 | magik.BottomSurface = "Smooth" | |
436 | magik.Transparency = 0 | |
437 | magik.CanCollide = false | |
438 | ||
439 | if holy == false then | |
440 | magik.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)]) | |
441 | else | |
442 | magik.BrickColor = BrickColor.new("Cyan") | |
443 | end | |
444 | ||
445 | local mr = math.rad | |
446 | local rnx,rny,rnz = mr(rndRange(180)),mr(rndRange(180)),mr(rndRange(180)) | |
447 | local cf = larm.CFrame * CFrame.new(0, -.8, 0) * CFrame.Angles(rnx,rny,rnz) | |
448 | magik.CFrame = cf | |
449 | for i = 0, 1, .05 do | |
450 | local newTrans = lerp(0.5, 1, i) | |
451 | local ns = lerp(1,1.2,i) | |
452 | magik.Transparency = newTrans | |
453 | magik.Size = Vector3.new(ns,ns,ns) | |
454 | magik.CFrame = cf | |
455 | rs:wait() | |
456 | end | |
457 | magik:Destroy() | |
458 | wait() | |
459 | end) | |
460 | end | |
461 | ---------------------------------------------------- | |
462 | Magik2 = function() | |
463 | Spawn(function() | |
464 | if stanceToggle == "Melee" then | |
465 | local function lerp(a,b,c) | |
466 | return a+(b-a)*c | |
467 | end | |
468 | local function rndRange(rng) | |
469 | return math.random(-rng*1000,rng*1000)/1000 | |
470 | end | |
471 | local magik2 = Instance.new("Part", rarm) | |
472 | local Colors = {"Deep orange", "Really black"} | |
473 | magik2.Anchored = true | |
474 | magik2.Locked = true | |
475 | magik2.FormFactor = "Custom" | |
476 | magik2.Size = Vector3.new(1.2, 1.2, 1.2) | |
477 | magik2.TopSurface = "Smooth" | |
478 | magik2.BottomSurface = "Smooth" | |
479 | magik2.Transparency = 0 | |
480 | magik2.Material = "Neon" | |
481 | magik2.CanCollide = false | |
482 | ||
483 | if holy == false then | |
484 | magik2.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)]) | |
485 | else | |
486 | magik2.BrickColor = BrickColor.new("Cyan") | |
487 | end | |
488 | ||
489 | local mr = math.rad | |
490 | local rnx,rny,rnz = mr(rndRange(180)),mr(rndRange(180)),mr(rndRange(180)) | |
491 | local cf = rarm.CFrame * CFrame.new(0, -.8, 0) * CFrame.Angles(rnx,rny,rnz) | |
492 | magik2.CFrame = cf | |
493 | for i = 0, 1, .05 do | |
494 | local newTrans = lerp(0.5, 1, i) | |
495 | local ns = lerp(1,1.2,i) | |
496 | magik2.Transparency = newTrans | |
497 | magik2.Size = Vector3.new(ns,ns,ns) | |
498 | magik2.CFrame = cf | |
499 | rs:wait() | |
500 | end | |
501 | magik2:Destroy() | |
502 | elseif stanceToggle ~= "Melee" then | |
503 | wait() | |
504 | end | |
505 | end) | |
506 | end | |
507 | ---------------------------------------------------- | |
508 | function lerp(a, b, t) -- Linear interpolation | |
509 | return a + (b - a)*t | |
510 | end | |
511 | ||
512 | function slerp(a, b, t) --Spherical interpolation | |
513 | dot = a:Dot(b) | |
514 | if dot > 0.99999 or dot < -0.99999 then | |
515 | return t <= 0.5 and a or b | |
516 | else | |
517 | r = math.acos(dot) | |
518 | return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r) | |
519 | end | |
520 | end | |
521 | ||
522 | function matrixInterpolate(a, b, t) | |
523 | local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components() | |
524 | local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components() | |
525 | local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position | |
526 | local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right | |
527 | local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up | |
528 | local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back | |
529 | local t = v1:Dot(v2) | |
530 | if not (t < 0 or t == 0 or t > 0) then -- Failsafe | |
531 | return CFrame.new() | |
532 | end | |
533 | return CFrame.new( | |
534 | v0.x, v0.y, v0.z, | |
535 | v1.x, v1.y, v1.z, | |
536 | v2.x, v2.y, v2.z, | |
537 | v3.x, v3.y, v3.z) | |
538 | end | |
539 | ---------------------------------------------------- | |
540 | function genWeld(a,b) | |
541 | local w = Instance.new("Weld",a) | |
542 | w.Part0 = a | |
543 | w.Part1 = b | |
544 | return w | |
545 | end | |
546 | function weld(a, b) | |
547 | local weld = Instance.new("Weld") | |
548 | weld.Name = "W" | |
549 | weld.Part0 = a | |
550 | weld.Part1 = b | |
551 | weld.C0 = a.CFrame:inverse() * b.CFrame | |
552 | weld.Parent = a | |
553 | return weld; | |
554 | end | |
555 | ---------------------------------------------------- | |
556 | function Lerp(c1,c2,al) | |
557 | local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()} | |
558 | local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()} | |
559 | for i,v in pairs(com1) do | |
560 | com1[i] = v+(com2[i]-v)*al | |
561 | end | |
562 | return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1))) | |
563 | end | |
564 | ----------------------------------------------------[[Dissolve function]] | |
565 | function Dissolve(ret) | |
566 | ||
567 | ret.BrickColor = BrickColor.new("Really black") | |
568 | for i = 1, 10 do wait() | |
569 | for i,v in pairs(ret:GetChildren()) do | |
570 | if v:IsA("Part") or v:IsA("WedgePart") then | |
571 | v.Transparency = v.Transparency + 0.1 | |
572 | ||
573 | end | |
574 | end | |
575 | end | |
576 | ret:Destroy() | |
577 | end | |
578 | ||
579 | ---------------------------------------------------- | |
580 | newWeld = function(wp0, wp1, wc0x, wc0y, wc0z) | |
581 | local wld = Instance.new("Weld", wp1) | |
582 | wld.Part0 = wp0 | |
583 | wld.Part1 = wp1 | |
584 | wld.C0 = CFrame.new(wc0x, wc0y, wc0z) | |
585 | end | |
586 | ---------------------------------------------------- | |
587 | newWeld(torso, larm, -1.5, 0.5, 0) | |
588 | larm.Weld.C1 = CFrame.new(0, 0.5, 0) | |
589 | newWeld(torso, rarm, 1.5, 0.5, 0) | |
590 | rarm.Weld.C1 = CFrame.new(0, 0.5, 0) | |
591 | newWeld(torso, hed, 0, 1.5, 0) | |
592 | newWeld(torso, lleg, -0.5, -1, 0) | |
593 | lleg.Weld.C1 = CFrame.new(0, 1, 0) | |
594 | newWeld(torso, rleg, 0.5, -1, 0) | |
595 | rleg.Weld.C1 = CFrame.new(0, 1, 0) | |
596 | newWeld(root, torso, 0, -1, 0) | |
597 | torso.Weld.C1 = CFrame.new(0, -1, 0) | |
598 | ---------------------------------------------------- | |
599 | --local SIDz = {"167985102, 163752916"}--181449739, 167161785, 148274436, 167985102, 163752916 | |
600 | z = Instance.new("Sound",char) --music | |
601 | z.SoundId = "rbxassetid://0"--..SIDz[math.random(1,#SIDz)] | |
602 | z.Looped = true | |
603 | z.Volume = 1 | |
604 | z.Pitch = .72 | |
605 | wait(1) | |
606 | z:Play() | |
607 | hum.WalkSpeed = 10 | |
608 | ||
609 | ||
610 | ||
611 | ||
612 | ||
613 | --[[partic = Instance.new("ParticleEmitter",hed) | |
614 | partic.Color = ColorSequence.new(Color3.new(15/225,0,225/45),Color3.new(20/255,0,205/255)) | |
615 | partic.LightEmission = .95 | |
616 | partic.VelocityInheritance = 0 | |
617 | partic.Rate = 300 | |
618 | partic.Texture = "rbxassetid:// 241650934" --56561915392079955 | |
619 | partic.Lifetime = NumberRange.new(0.1,0.2) | |
620 | partic.RotSpeed = NumberRange.new(100,100) | |
621 | partic.Speed = NumberRange.new(2,6) | |
622 | partic.Enabled = true | |
623 | partic.LockedToPart = true]] | |
624 | ||
625 | --Nah | |
626 | ||
627 | ---------------------------------------------------- | |
628 | ||
629 | ---------------------------------------------------- | |
630 | local m = Instance.new("Model") | |
631 | m.Name = "Genkadda" | |
632 | p1 = Instance.new("Part", m) | |
633 | p1.Material = "Metal" | |
634 | p1.BrickColor = BrickColor.new("Really black") | |
635 | p1.Name = "BladePart" | |
636 | p1.FormFactor = Enum.FormFactor.Symmetric | |
637 | p1.Size = Vector3.new(1, 1, 1) | |
638 | p1.CFrame = CFrame.new(103.003883, 10.755723, -7.61905956, 5.61699271e-005, -7.1823597e-006, 0.999998987, -0.984785616, -0.173714966, 3.55839729e-005, 0.173720747, -0.984761655, 5.9530139e-006) | |
639 | p1.CanCollide = false | |
640 | p1.Locked = true | |
641 | p1.Elasticity = 0 | |
642 | p1.BottomSurface = Enum.SurfaceType.Smooth | |
643 | p1.TopSurface = Enum.SurfaceType.Smooth | |
644 | b1 = Instance.new("BlockMesh", p1) | |
645 | b1.Name = "Mesh" | |
646 | b1.Scale = Vector3.new(0.299999923, 1, 0.120000005) | |
647 | p2 = Instance.new("Part", m) | |
648 | p2.Material = "Metal" | |
649 | p2.BrickColor = BrickColor.new("Really black") | |
650 | p2.FormFactor = Enum.FormFactor.Symmetric | |
651 | p2.Size = Vector3.new(1, 1, 1) | |
652 | p2.CFrame = CFrame.new(103.00399, 10.7255898, -6.52608919, 0.00135809346, 0.00169118668, -0.999996662, 0.965820193, 0.259168088, 0.0017684648, 0.259154975, -0.965800881, -0.00130418094) | |
653 | p2.CanCollide = false | |
654 | p2.Locked = true | |
655 | p2.Elasticity = 0 | |
656 | p2.BottomSurface = Enum.SurfaceType.Smooth | |
657 | p2.TopSurface = Enum.SurfaceType.Smooth | |
658 | b2 = Instance.new("BlockMesh", p2) | |
659 | b2.Name = "Mesh" | |
660 | b2.Scale = Vector3.new(0.099999927, 0.699999928, 0.099999927) | |
661 | p3 = Instance.new("Part", m) | |
662 | p3.Material = "Metal" | |
663 | p3.BrickColor = BrickColor.new("Really black") | |
664 | p3.FormFactor = Enum.FormFactor.Symmetric | |
665 | p3.Size = Vector3.new(1, 2, 1) | |
666 | p3.CFrame = CFrame.new(103.004028, 11.1456547, -6.819067, 1.43263023e-005, -2.88564479e-006, 0.999998987, -0.882936299, -0.469471544, -7.18829688e-006, 0.469469696, -0.882911503, 1.35099981e-005) | |
667 | p3.CanCollide = false | |
668 | p3.Locked = true | |
669 | p3.Elasticity = 0 | |
670 | p3.BottomSurface = Enum.SurfaceType.Smooth | |
671 | p3.TopSurface = Enum.SurfaceType.Smooth | |
672 | b3 = Instance.new("BlockMesh", p3) | |
673 | b3.Name = "Mesh" | |
674 | b3.Scale = Vector3.new(0.099999927, 0.699999928, 0.099999927) | |
675 | p4 = Instance.new("Part", m) | |
676 | p4.Material = "Metal" | |
677 | p4.BrickColor = BrickColor.new("Really black") | |
678 | p4.Name = "BladePart" | |
679 | p4.FormFactor = Enum.FormFactor.Symmetric | |
680 | p4.Size = Vector3.new(1, 1, 1) | |
681 | p4.CFrame = CFrame.new(103.003372, 10.965373, -6.66876507, 1.57370523e-005, -6.04354591e-006, 0.999996603, -0.965898931, -0.25886938, -7.14969246e-006, 0.258875549, -0.965874314, 1.58735529e-005) | |
682 | p4.CanCollide = false | |
683 | p4.Locked = true | |
684 | p4.Elasticity = 0 | |
685 | p4.BottomSurface = Enum.SurfaceType.Smooth | |
686 | p4.TopSurface = Enum.SurfaceType.Smooth | |
687 | b4 = Instance.new("BlockMesh", p4) | |
688 | b4.Name = "Mesh" | |
689 | b4.Scale = Vector3.new(0.299999923, 1, 0.120000005) | |
690 | p5 = Instance.new("Part", m) | |
691 | p5.Material = "Metal" | |
692 | p5.BrickColor = BrickColor.new("Really black") | |
693 | p5.Name = "Hilt" | |
694 | p5.FormFactor = Enum.FormFactor.Custom | |
695 | p5.Size = Vector3.new(1, 0.400000006, 1.60000014) | |
696 | p5.CFrame = CFrame.new(103.003395, 11.0653381, -6.1687479, -0.99999404, 5.54991711e-005, -0.000617815298, -0.000594727404, -0.000124425016, 0.999983907, 2.66434654e-005, 0.999962509, 0.000109782166) | |
697 | p5.CanCollide = false | |
698 | p5.Locked = true | |
699 | p5.BottomSurface = Enum.SurfaceType.Smooth | |
700 | p5.TopSurface = Enum.SurfaceType.Smooth | |
701 | b5 = Instance.new("BlockMesh", p5) | |
702 | b5.Name = "Mesh" | |
703 | b5.Scale = Vector3.new(0.299999923, 0.399999917, 0.799999952) | |
704 | p6 = Instance.new("Part", m) | |
705 | p6.Material = "Metal" | |
706 | p6.BrickColor = BrickColor.new("Really black") | |
707 | p6.Name = "Handle" | |
708 | p6.FormFactor = Enum.FormFactor.Custom | |
709 | p6.Size = Vector3.new(1.29999995, 1, 1) | |
710 | p6.CFrame = CFrame.new(103.000061, 11.0688219, -5.5480547, -1.23393656e-005, -1.36360759e-005, 0.999994218, 5.37017331e-006, 0.999984086, -9.45257489e-006, -0.999962509, -9.28580994e-006, 1.64470257e-005) | |
711 | p6.CanCollide = false | |
712 | p6.Locked = true | |
713 | p6.BottomSurface = Enum.SurfaceType.Smooth | |
714 | p6.TopSurface = Enum.SurfaceType.Smooth | |
715 | b6 = Instance.new("SpecialMesh", p6) | |
716 | b6.MeshType = Enum.MeshType.Cylinder | |
717 | b6.Name = "Mesh" | |
718 | b6.Scale = Vector3.new(1, 0.200000003, 0.200000003) | |
719 | p7 = Instance.new("Part", m) | |
720 | p7.Material = "Metal" | |
721 | p7.BrickColor = BrickColor.new("Really black") | |
722 | p7.FormFactor = Enum.FormFactor.Symmetric | |
723 | p7.Size = Vector3.new(1, 1, 1) | |
724 | p7.CFrame = CFrame.new(103.000099, 11.0688391, -4.79808855, -0.000332629686, 0.00429873355, -0.99998492, -4.5920292e-006, 0.999974728, 0.00432178052, 0.999962449, -8.49941443e-006, -0.000361445156) | |
725 | p7.CanCollide = false | |
726 | p7.Locked = true | |
727 | b7 = Instance.new("SpecialMesh", p7) | |
728 | b7.MeshId = "http://www.roblox.com/Asset/?id=9756362" | |
729 | b7.TextureId = "" | |
730 | b7.MeshType = Enum.MeshType.FileMesh | |
731 | b7.Name = "Mesh" | |
732 | b7.Scale = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
733 | p8 = Instance.new("Part", m) | |
734 | p8.Material = "Metal" | |
735 | p8.BrickColor = BrickColor.new("Really black") | |
736 | p8.Name = "BladePart" | |
737 | p8.FormFactor = Enum.FormFactor.Symmetric | |
738 | p8.Size = Vector3.new(1, 1, 1) | |
739 | p8.CFrame = CFrame.new(103.003326, 10.6254845, -8.59870911, -2.92104669e-005, -1.10579058e-005, 0.999994218, -0.996175766, -0.0871899351, -5.3152442e-005, 0.0872026458, -0.996152997, 2.03179661e-005) | |
740 | p8.CanCollide = false | |
741 | p8.Locked = true | |
742 | p8.Elasticity = 0 | |
743 | p8.BottomSurface = Enum.SurfaceType.Smooth | |
744 | p8.TopSurface = Enum.SurfaceType.Smooth | |
745 | b8 = Instance.new("BlockMesh", p8) | |
746 | b8.Name = "Mesh" | |
747 | b8.Scale = Vector3.new(0.299999923, 1, 0.120000005) | |
748 | p9 = Instance.new("Part", m) | |
749 | p9.Material = "Metal" | |
750 | p9.BrickColor = BrickColor.new("Really black") | |
751 | p9.Name = "BladePart" | |
752 | p9.FormFactor = Enum.FormFactor.Symmetric | |
753 | p9.Size = Vector3.new(1, 1, 1) | |
754 | p9.CFrame = CFrame.new(103.003311, 10.625597, -9.51878738, -2.59891603e-005, -1.34348729e-005, 0.999994218, -0.996185422, 0.087079078, -4.78096408e-005, -0.0870626047, -0.996165276, 1.31400229e-005) | |
755 | p9.CanCollide = false | |
756 | p9.Locked = true | |
757 | p9.Elasticity = 0 | |
758 | p9.BottomSurface = Enum.SurfaceType.Smooth | |
759 | p9.TopSurface = Enum.SurfaceType.Smooth | |
760 | b9 = Instance.new("BlockMesh", p9) | |
761 | b9.Name = "Mesh" | |
762 | b9.Scale = Vector3.new(0.299999923, 1, 0.120000005) | |
763 | p10 = Instance.new("Part", m) | |
764 | p10.Material = "Metal" | |
765 | p10.BrickColor = BrickColor.new("Really black") | |
766 | p10.Name = "BladeTip" | |
767 | p10.FormFactor = Enum.FormFactor.Symmetric | |
768 | p10.Size = Vector3.new(1, 1, 2) | |
769 | p10.CFrame = CFrame.new(103.00309, 11.1081867, -11.6109829, -0.999994099, -0.000455793255, 4.643387e-005, 0.00045133481, -0.965918779, -0.25878337, 0.000134008093, -0.258763671, 0.965901971) | |
770 | p10.CanCollide = false | |
771 | p10.Locked = true | |
772 | p10.Elasticity = 0 | |
773 | p10.BottomSurface = Enum.SurfaceType.Smooth | |
774 | p10.TopSurface = Enum.SurfaceType.Smooth | |
775 | b10 = Instance.new("SpecialMesh", p10) | |
776 | b10.MeshType = Enum.MeshType.Wedge | |
777 | b10.Name = "Mesh" | |
778 | b10.Scale = Vector3.new(0.119999997, 0.299999923, 0.699999928) | |
779 | p11 = Instance.new("Part", m) | |
780 | p11.Material = "Metal" | |
781 | p11.BrickColor = BrickColor.new("Really black") | |
782 | p11.Name = "BladePart" | |
783 | p11.FormFactor = Enum.FormFactor.Symmetric | |
784 | p11.Size = Vector3.new(1, 1, 1) | |
785 | p11.CFrame = CFrame.new(103.003296, 10.7956495, -10.4587727, 2.83485351e-005, -1.54050977e-005, 0.999994218, -0.96592474, 0.258761972, 8.27970416e-006, -0.258742362, -0.965907693, 2.1241216e-005) | |
786 | p11.CanCollide = false | |
787 | p11.Locked = true | |
788 | p11.Elasticity = 0 | |
789 | p11.BottomSurface = Enum.SurfaceType.Smooth | |
790 | p11.TopSurface = Enum.SurfaceType.Smooth | |
791 | b11 = Instance.new("BlockMesh", p11) | |
792 | b11.Name = "Mesh" | |
793 | b11.Scale = Vector3.new(0.299999923, 1, 0.120000005) | |
794 | p12 = Instance.new("Part", m) | |
795 | p12.Material = "Metal" | |
796 | p12.BrickColor = BrickColor.new("Really black") | |
797 | p12.Name = "BladeTip2" | |
798 | p12.FormFactor = Enum.FormFactor.Custom | |
799 | p12.Size = Vector3.new(1, 1, 2.4000001) | |
800 | p12.CFrame = CFrame.new(102.999977, 10.6319504, -10.4398403, -0.999994218, -5.5769262e-005, 6.55075928e-005, 4.61044419e-006, 0.882887006, 0.469551951, -0.000112806956, 0.469529003, -0.882874727) | |
801 | p12.CanCollide = false | |
802 | p12.Locked = true | |
803 | p12.Elasticity = 0 | |
804 | p12.BottomSurface = Enum.SurfaceType.Smooth | |
805 | p12.TopSurface = Enum.SurfaceType.Smooth | |
806 | b12 = Instance.new("SpecialMesh", p12) | |
807 | b12.MeshType = Enum.MeshType.Wedge | |
808 | b12.Name = "Mesh" | |
809 | b12.Scale = Vector3.new(0.119999997, 0.239999995, 0.699999928) | |
810 | p13 = Instance.new("Part", m) | |
811 | p13.Material = "Metal" | |
812 | p13.BrickColor = BrickColor.new("Medium stone grey") | |
813 | p13.Transparency = 1 | |
814 | p13.Name = "HitBox" | |
815 | p13.FormFactor = Enum.FormFactor.Custom | |
816 | p13.Size = Vector3.new(6.0999999, 0.400000006, 1.5999999) | |
817 | p13.CFrame = CFrame.new(103.009995, 10.9988394, -9.2679081, 1.22519814e-005, -0.999994218, 1.36361559e-005, -5.27501106e-006, 9.45320426e-006, -0.999984264, 0.999962687, -1.65344682e-005, 9.20891762e-006) | |
818 | p13.CanCollide = false | |
819 | p13.Locked = true | |
820 | p13.BottomSurface = Enum.SurfaceType.Smooth | |
821 | p13.TopSurface = Enum.SurfaceType.Smooth | |
822 | w1 = Instance.new("Weld", p1) | |
823 | w1.Name = "Part_Weld" | |
824 | w1.Part0 = p1 | |
825 | w1.C0 = CFrame.new(11.9124546, -5.63626003, -103.00383, 4.33940659e-005, -0.984795153, 0.173719674, 1.85460614e-009, -0.173719659, -0.984795094, 1, 4.27345876e-005, -7.53657105e-006) | |
826 | w1.Part1 = p2 | |
827 | w1.C1 = CFrame.new(-8.80891991, -9.26009178, 102.975845, 0.00136663229, 0.965830803, 0.259170175, 0.00170310249, 0.25916782, -0.965830863, -0.999997616, 0.00176132878, -0.00129072159) | |
828 | w2 = Instance.new("Weld", p2) | |
829 | w2.Name = "Part_Weld" | |
830 | w2.Part0 = p2 | |
831 | w2.C0 = CFrame.new(-8.80891991, -9.26009178, 102.975845, 0.00136663229, 0.965830803, 0.259170175, 0.00170310249, 0.25916782, -0.965830863, -0.999997616, 0.00176132878, -0.00129072159) | |
832 | w2.Part1 = p3 | |
833 | w2.C1 = CFrame.new(13.0439634, -0.78926897, -103.003448, -4.37113883e-008, -0.88294369, 0.469478935, 0, -0.469478935, -0.88294369, 1, -3.85946954e-008, 2.05215755e-008) | |
834 | w3 = Instance.new("Weld", p3) | |
835 | w3.Name = "BladePart_Weld" | |
836 | w3.Part0 = p3 | |
837 | w3.C0 = CFrame.new(13.0439634, -0.78926897, -103.003448, -4.37113883e-008, -0.88294369, 0.469478935, 0, -0.469478935, -0.88294369, 1, -3.85946954e-008, 2.05215755e-008) | |
838 | w3.Part1 = p4 | |
839 | w3.C1 = CFrame.new(12.3193283, -3.60437131, -103.003067, 2.38418579e-006, -0.965907753, 0.258877277, 0, -0.258874893, -0.965907753, 0.999997616, 0, 2.38418579e-006) | |
840 | w4 = Instance.new("Weld", p4) | |
841 | w4.Name = "Hilt_Weld" | |
842 | w4.Part0 = p4 | |
843 | w4.C0 = CFrame.new(12.3193283, -3.60437131, -103.003067, 2.38418579e-006, -0.965907753, 0.258877277, 0, -0.258874893, -0.965907753, 0.999997616, 0, 2.38418579e-006) | |
844 | w4.Part1 = p5 | |
845 | w4.C1 = CFrame.new(103.010277, 6.16758585, -11.003541, -0.999999821, -0.00060418935, 4.31301851e-005, 4.32021443e-005, -0.000119086159, 1, -0.000604184228, 0.999999821, 0.000119112243) | |
846 | w5 = Instance.new("Weld", p5) | |
847 | w5.Name = "Handle_Weld" | |
848 | w5.Part0 = p5 | |
849 | w5.C0 = CFrame.new(103.010277, 6.16758585, -11.003541, -0.999999821, -0.00060418935, 4.31301851e-005, 4.32021443e-005, -0.000119086159, 1, -0.000604184228, 0.999999821, 0.000119112243) | |
850 | w5.Part1 = p6 | |
851 | w5.C1 = CFrame.new(-5.54999733, -11.0699978, -103, -4.37113883e-008, 2.98366913e-008, -1, 0, 1, 2.98366913e-008, 1, 1.3042032e-015, -4.37113883e-008) | |
852 | w6 = Instance.new("Weld", p6) | |
853 | w6.Name = "Part_Weld" | |
854 | w6.Part0 = p6 | |
855 | w6.C0 = CFrame.new(-5.54999733, -11.0699978, -103, -4.37113883e-008, 2.98366913e-008, -1, 0, 1, 2.98366913e-008, 1, 1.3042032e-015, -4.37113883e-008) | |
856 | w6.Part1 = p7 | |
857 | w6.C1 = CFrame.new(4.83552647, -11.5140886, 102.949669, -0.000344927335, 7.4505806e-007, 0.99999994, 0.00431239465, 0.999990702, 7.4505806e-007, -0.999990642, 0.00431239465, -0.000344927335) | |
858 | w7 = Instance.new("Weld", p7) | |
859 | w7.Name = "BladePart_Weld" | |
860 | w7.Part0 = p7 | |
861 | w7.C0 = CFrame.new(4.83552647, -11.5140886, 102.949669, -0.000344927335, 7.4505806e-007, 0.99999994, 0.00431239465, 0.999990702, 7.4505806e-007, -0.999990642, 0.00431239465, -0.000344927335) | |
862 | w7.Part1 = p8 | |
863 | w7.C1 = CFrame.new(11.3406382, -7.6414094, -103.0028, -4.38670977e-005, -0.996191144, 0.0871966407, 1.91451011e-009, -0.0871966407, -0.996191144, 1, -4.36998489e-005, 3.82696771e-006) | |
864 | w8 = Instance.new("Weld", p8) | |
865 | w8.Name = "BladePart_Weld" | |
866 | w8.Part0 = p8 | |
867 | w8.C0 = CFrame.new(11.3406382, -7.6414094, -103.0028, -4.38670977e-005, -0.996191144, 0.0871966407, 1.91451011e-009, -0.0871966407, -0.996191144, 1, -4.36998489e-005, 3.82696771e-006) | |
868 | w8.Part1 = p9 | |
869 | w8.C1 = CFrame.new(9.76131344, -10.4100504, -103.002922, -3.85031162e-005, -0.996201694, -0.0870751292, 1.47589729e-009, 0.0870751366, -0.996201754, 1, -3.83570004e-005, -3.35119148e-006) | |
870 | w9 = Instance.new("Weld", p9) | |
871 | w9.Name = "BladeTip_Weld" | |
872 | w9.Part0 = p9 | |
873 | w9.C0 = CFrame.new(9.76131344, -10.4100504, -103.002922, -3.85031162e-005, -0.996201694, -0.0870751292, 1.47589729e-009, 0.0870751366, -0.996201754, 1, -3.83570004e-005, -3.35119148e-006) | |
874 | w9.Part1 = p10 | |
875 | w9.C1 = CFrame.new(102.999939, 7.7735939, 14.0892649, -0.999999881, 0.000441889424, 0.000150508567, -0.000465785735, -0.965935588, -0.258782327, 3.10284122e-005, -0.258782327, 0.965935647) | |
876 | w10 = Instance.new("Weld", p10) | |
877 | w10.Name = "BladePart_Weld" | |
878 | w10.Part0 = p10 | |
879 | w10.C0 = CFrame.new(102.999939, 7.7735939, 14.0892649, -0.999999881, 0.000441889424, 0.000150508567, -0.000465785735, -0.965935588, -0.258782327, 3.10284122e-005, -0.258782327, 0.965935647) | |
880 | w10.Part1 = p11 | |
881 | w10.C1 = CFrame.new(7.72030354, -12.8984127, -103.003448, 1.83585671e-005, -0.965941429, -0.258760989, 3.25545535e-010, 0.258760959, -0.96594137, 1, 1.77332167e-005, 4.7507956e-006) | |
882 | w11 = Instance.new("Weld", p11) | |
883 | w11.Name = "BladeTip2_Weld" | |
884 | w11.Part0 = p11 | |
885 | w11.C0 = CFrame.new(7.72030354, -12.8984127, -103.003448, 1.83585671e-005, -0.965941429, -0.258760989, 3.25545535e-010, 0.258760959, -0.96594137, 1, 1.77332167e-005, 4.7507956e-006) | |
886 | w11.Part1 = p12 | |
887 | w11.C1 = CFrame.new(102.999031, -4.47981405, -14.2206001, -1, -4.84334305e-006, -9.63198472e-005, -4.95036402e-005, 0.882903397, 0.469554722, 8.27668991e-005, 0.469554722, -0.882903397) | |
888 | w12 = Instance.new("Weld", p12) | |
889 | w12.Name = "HitBox_Weld" | |
890 | w12.Part0 = p12 | |
891 | w12.C0 = CFrame.new(102.999031, -4.47981405, -14.2206001, -1, -4.84334305e-006, -9.63198472e-005, -4.95036402e-005, 0.882903397, 0.469554722, 8.27668991e-005, 0.469554722, -0.882903397) | |
892 | w12.Part1 = p13 | |
893 | w12.C1 = CFrame.new(9.27000427, 103.009995, 10.9999933, -4.37113883e-008, -4.37113883e-008, 1, -1, 1.91068547e-015, -4.37113883e-008, 0, -1, -4.37113883e-008) | |
894 | w13 = Instance.new("Weld", p13) | |
895 | w13.Name = "Weld" | |
896 | w13.Part0 = p13 | |
897 | w13.C0 = CFrame.new(9.27000427, 103.009995, 10.9999933, -4.37113883e-008, -4.37113883e-008, 1, -1, 1.91068547e-015, -4.37113883e-008, 0, -1, -4.37113883e-008) | |
898 | m.Parent = char | |
899 | m:MakeJoints() | |
900 | ---------------------------------------------------- | |
901 | local cor = Instance.new("Part", char.Genkadda) | |
902 | cor.Name = "Thingy" | |
903 | cor.Locked = true | |
904 | cor.BottomSurface = 0 | |
905 | cor.CanCollide = false | |
906 | cor.Size = Vector3.new(1, 9, 1) | |
907 | cor.Transparency = 1 | |
908 | cor.TopSurface = 0 | |
909 | corw = Instance.new("Weld", cor) | |
910 | corw.Part0 = rarm | |
911 | corw.Part1 = cor | |
912 | corw.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(90)) | |
913 | corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)) | |
914 | weld1 = Instance.new("Weld", char.Genkadda) | |
915 | weld1.Part0 = cor | |
916 | weld1.Part1 = p6 | |
917 | weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0)) | |
918 | ---------------------------------------------------- Gauntlet | |
919 | ||
920 | m=Instance.new('Model',char) | |
921 | m.Parent = char | |
922 | ||
923 | local function weldBetween(a, b) | |
924 | local weldd = Instance.new("ManualWeld") | |
925 | weldd.Part0 = a | |
926 | weldd.Part1 = b | |
927 | weldd.C0 = CFrame.new() | |
928 | weldd.C1 = b.CFrame:inverse() * a.CFrame | |
929 | weldd.Parent = a | |
930 | return weldd | |
931 | end | |
932 | ||
933 | it=Instance.new | |
934 | ||
935 | function nooutline(part) | |
936 | part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10 | |
937 | end | |
938 | ||
939 | function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size) | |
940 | local fp=it("Part") | |
941 | fp.formFactor=formfactor | |
942 | fp.Parent=parent | |
943 | fp.Reflectance=reflectance | |
944 | fp.Transparency=transparency | |
945 | fp.CanCollide=false | |
946 | fp.Locked=true | |
947 | fp.BrickColor=BrickColor.new(tostring(brickcolor)) | |
948 | fp.Name=name | |
949 | fp.Size=size | |
950 | fp.Position=char.Torso.Position | |
951 | nooutline(fp) | |
952 | fp.Material=material | |
953 | fp:BreakJoints() | |
954 | return fp | |
955 | end | |
956 | ||
957 | function mesh(Mesh,part,meshtype,meshid,offset,scale) | |
958 | local mesh=it(Mesh) | |
959 | mesh.Parent=part | |
960 | if Mesh=="SpecialMesh" then | |
961 | mesh.MeshType=meshtype | |
962 | mesh.MeshId=meshid | |
963 | end | |
964 | mesh.Offset=offset | |
965 | mesh.Scale=scale | |
966 | return mesh | |
967 | end | |
968 | ||
969 | function weld(parent,part0,part1,c0,c1) | |
970 | local weld=it("Weld") | |
971 | weld.Parent=parent | |
972 | weld.Part0=part0 | |
973 | weld.Part1=part1 | |
974 | weld.C0=c0 | |
975 | weld.C1=c1 | |
976 | return weld | |
977 | end | |
978 | ||
979 | ||
980 | ||
981 | MN=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","Handle",Vector3.new(1.09732866, 2.19465828, 1.09732854)) | |
982 | MNweld=weld(m,char["Right Arm"],MN,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0323486328, -0.0509860516, -0.00120401382, -0.00500982394, 0.00520668458, 0.999973893, -0.00739898486, 0.999958873, -0.00524367485, -0.999960065, -0.00742506143, -0.0049710935)) | |
983 | TR7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR7",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
984 | TR7weld=weld(m,MN,TR7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393)) | |
985 | mesh("SpecialMesh",TR7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997)) | |
986 | MD9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD9",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
987 | MD9weld=weld(m,MN,MD9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.741846681, 0.199262142, 1.00000405, -6.92205504e-06, 0.000154254027, 4.65649646e-05, 0.965939224, -0.25876984, -0.000147186685, 0.258768767, 0.965943158)) | |
988 | mesh("SpecialMesh",MD9,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998)) | |
989 | MD1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD1",Vector3.new(0.237408489, 0.259352177, 0.518704116)) | |
990 | MD1weld=weld(m,MN,MD1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.402763367, -0.974855185, 0.682875633, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079)) | |
991 | mesh("SpecialMesh",MD1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
992 | MD10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD10",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
993 | MD10weld=weld(m,MN,MD10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
994 | mesh("SpecialMesh",MD10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
995 | MD11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD11",Vector3.new(0.266768694, 1.09732914, 0.658397138)) | |
996 | MD11weld=weld(m,MN,MD11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.493839264, -0.274354219, 4.24385071e-05, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
997 | mesh("SpecialMesh",MD11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999)) | |
998 | MD12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD12",Vector3.new(0.266768694, 1.09732914, 0.658397138)) | |
999 | MD12weld=weld(m,MN,MD12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.493812561, -0.274300575, -0.000376224518, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1000 | mesh("SpecialMesh",MD12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999)) | |
1001 | MD13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD13",Vector3.new(1.09732866, 0.822996795, 1.09732854)) | |
1002 | MD13weld=weld(m,MN,MD13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.68582201, 0.000464439392, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1003 | mesh("SpecialMesh",MD13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1004 | MD14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD14",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1005 | MD14weld=weld(m,MN,MD14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.603547096, 0.000416755676, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1006 | mesh("SpecialMesh",MD14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995)) | |
1007 | MD15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD15",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1008 | MD15weld=weld(m,MN,MD15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.62939453e-05, 0.137180567, -4.529953e-05, -1.0000037, -0.000862163957, 0.000179466791, -0.000862103421, 0.999999523, 0.000520790287, -0.000179945491, 0.000520619913, -1.00000381)) | |
1009 | mesh("SpecialMesh",MD15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1010 | MD16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD16",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1011 | MD16weld=weld(m,MN,MD16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.86645508e-05, 0.932742357, 0.000658988953, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1012 | mesh("SpecialMesh",MD16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995)) | |
1013 | MD19=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD19",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1014 | MD19weld=weld(m,MN,MD19,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393)) | |
1015 | mesh("SpecialMesh",MD19,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998)) | |
1016 | MD18=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD18",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1017 | MD18weld=weld(m,MN,MD18,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1018 | mesh("SpecialMesh",MD18,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998)) | |
1019 | MD2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD2",Vector3.new(0.2574085, 0.259352177, 0.518704116)) | |
1020 | MD2weld=weld(m,MN,MD2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.392555237, -0.573539257, 1.09872949, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516)) | |
1021 | mesh("SpecialMesh",MD2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1022 | MD3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD3",Vector3.new(0.247408509, 0.259352177, 0.518704116)) | |
1023 | MD3weld=weld(m,MN,MD3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.397964478, -0.817667723, 0.487944126, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668)) | |
1024 | mesh("SpecialMesh",MD3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1025 | MD4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD4",Vector3.new(0.247408509, 0.259352177, 0.518704116)) | |
1026 | MD4weld=weld(m,MN,MD4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.422103882, -0.82026124, 0.507567406, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668)) | |
1027 | mesh("SpecialMesh",MD4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1028 | MD5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD5",Vector3.new(0.2574085, 0.259352177, 0.518704116)) | |
1029 | MD5weld=weld(m,MN,MD5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.427509308, -0.557831764, 1.11046171, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516)) | |
1030 | mesh("SpecialMesh",MD5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1031 | MD6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD6",Vector3.new(0.237408489, 0.259352177, 0.518704116)) | |
1032 | MD6weld=weld(m,MN,MD6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417263031, -0.972257376, 0.702233315, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079)) | |
1033 | mesh("SpecialMesh",MD6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1034 | MD7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD7",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1035 | MD7weld=weld(m,MN,MD7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393)) | |
1036 | mesh("SpecialMesh",MD7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1037 | MD8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD8",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1038 | MD8weld=weld(m,MN,MD8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1039 | mesh("SpecialMesh",MD8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998)) | |
1040 | TR1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR1",Vector3.new(0.266768694, 0.54866457, 0.548664272)) | |
1041 | TR1weld=weld(m,MN,TR1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548826218, 0.30154109, 4.57763672e-05, -0.000205519143, -0.0001726388, -1, -4.31765802e-05, 1, -0.00017263052, 1, 4.314119e-05, -0.000205526594)) | |
1042 | mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048)) | |
1043 | TR2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1044 | TR2weld=weld(m,MN,TR2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, 0.741921067, 0.198978901, 1.00000405, -2.92747281e-05, -1.7457176e-05, 2.37242784e-05, 0.965939343, -0.258769363, 2.44602561e-05, 0.25876832, 0.965943277)) | |
1045 | mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997)) | |
1046 | TR3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1047 | TR3weld=weld(m,MN,TR3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.603546381, 0.000186920166, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775)) | |
1048 | mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994)) | |
1049 | TR4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1050 | TR4weld=weld(m,MN,TR4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000106811523, 0.93274045, 0.000304222107, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775)) | |
1051 | mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994)) | |
1052 | TR5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1053 | TR5weld=weld(m,MN,TR5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1054 | mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997)) | |
1055 | TR6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1056 | TR6weld=weld(m,MN,TR6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1057 | mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997)) | |
1058 | MD21=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272)) | |
1059 | MD21weld=weld(m,MN,MD21,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548921585, 0.301375628, 0.000118255615, -0.000262488145, -9.39509191e-05, -1.00000393, -0.000154611655, 1, -9.38984886e-05, 1.00000393, 0.000154557638, -0.000262471847)) | |
1060 | mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036)) | |
1061 | ||
1062 | ||
1063 | MN=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","Handle",Vector3.new(1.03740847, 2.07481742, 1.03740823)) | |
1064 | MNweld=weld(m,char["Right Leg"],MN,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00872802734, 0.00284510851, -0.0114479065, 0.000559218752, 0.00461495388, -0.999989212, 0.0116515048, 0.999921441, 0.00462115649, 0.999931991, -0.0116539635, 0.000505403674)) | |
1065 | FB1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB1",Vector3.new(0.252201617, 1.03740871, 0.622444928)) | |
1066 | FB1weld=weld(m,MN,FB1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.466812134, -0.259373605, 4.19616699e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1067 | mesh("SpecialMesh",FB1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999)) | |
1068 | FB10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB10",Vector3.new(1.03740847, 0.259352177, 1.03740823)) | |
1069 | FB10weld=weld(m,MN,FB10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.14440918e-05, -0.907726586, -0.0001745224, -1.00000012, -4.3686945e-05, -0.000145533413, -4.37181443e-05, 1, 0.00021532696, 0.000145524042, 0.000215333974, -1)) | |
1070 | mesh("SpecialMesh",FB10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1071 | FB11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","FB11",Vector3.new(0.518704236, 0.778056443, 0.252201557)) | |
1072 | FB11weld=weld(m,MN,FB11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.49278298, -0.518682957, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1073 | mesh("SpecialMesh",FB11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 0.415454417)) | |
1074 | FB12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB12",Vector3.new(1.03740847, 0.778056443, 1.03740823)) | |
1075 | FB12weld=weld(m,MN,FB12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.14440918e-05, 0.648371816, 1.38282776e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1076 | mesh("SpecialMesh",FB12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1077 | FB2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","FB2",Vector3.new(1.03740847, 0.252201647, 1.03740823)) | |
1078 | FB2weld=weld(m,MN,FB2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-05, 0.726178706, 4.57763672e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1079 | mesh("SpecialMesh",FB2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995)) | |
1080 | FB3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB3",Vector3.new(1.03740847, 0.259352177, 0.518704116)) | |
1081 | FB3weld=weld(m,MN,FB3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000141143799, -0.907841623, 0.725996017, -1.00000012, -4.3686945e-05, -0.000145533413, -4.37181443e-05, 1, 0.00021532696, 0.000145524042, 0.000215333974, -1)) | |
1082 | mesh("SpecialMesh",FB3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1083 | FB4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB4",Vector3.new(1.03740847, 0.259352177, 0.518704116)) | |
1084 | FB4weld=weld(m,MN,FB4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000263214111, -0.495628834, 1.08177543, -1, -0.000208274461, -0.000166981248, -2.93208286e-05, 0.707433105, -0.706780434, 0.000265331706, -0.706780314, -0.707433105)) | |
1085 | mesh("SpecialMesh",FB4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1086 | FB5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","FB5",Vector3.new(1.03740847, 0.252201647, 1.03740823)) | |
1087 | FB5weld=weld(m,MN,FB5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.67028809e-05, 0.933657289, 6.19888306e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1088 | mesh("SpecialMesh",FB5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995)) | |
1089 | FB6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB6",Vector3.new(1.03740847, 0.259352177, 1.03740823)) | |
1090 | FB6weld=weld(m,MN,FB6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.81469727e-06, 0.129679263, 3.29017639e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1091 | mesh("SpecialMesh",FB6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1092 | FB7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB7",Vector3.new(0.252201617, 1.03740871, 0.622444928)) | |
1093 | FB7weld=weld(m,MN,FB7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.466838837, -0.259338915, -8.58306885e-06, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1094 | mesh("SpecialMesh",FB7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999)) | |
1095 | FB8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB8",Vector3.new(1.03740847, 0.259352177, 0.518704116)) | |
1096 | FB8weld=weld(m,MN,FB8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000205993652, -0.764207125, 0.546924591, -0.999995053, -0.000121198129, -0.00017335522, -0.000163274352, 0.965882957, 0.258978456, 0.000135882699, 0.258978575, -0.96587801)) | |
1097 | mesh("SpecialMesh",FB8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1098 | FB9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB9",Vector3.new(1.03740847, 0.259352177, 1.03740823)) | |
1099 | FB9weld=weld(m,MN,FB9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00023651123, 0.648379326, -0.000217437744, -0.99999994, 0.00030120369, -0.00014261005, -0.000301247928, -0.999999821, 0.000302845408, -0.000142518838, 0.000302889268, 1)) | |
1100 | mesh("SpecialMesh",FB9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1101 | TN1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TN1",Vector3.new(1.03740847, 0.252201647, 1.03740823)) | |
1102 | TN1weld=weld(m,MN,TN1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.67028809e-05, 0.933657289, 6.19888306e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1103 | mesh("SpecialMesh",TN1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994)) | |
1104 | TN2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TN2",Vector3.new(0.518704236, 0.778056443, 0.252201557)) | |
1105 | TN2weld=weld(m,MN,TN2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.49278298, -0.518682957, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1106 | mesh("SpecialMesh",TN2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.899999917, 0.899999917, 0.419567823)) | |
1107 | TN3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TN3",Vector3.new(1.03740847, 0.252201647, 1.03740823)) | |
1108 | TN3weld=weld(m,MN,TN3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-05, 0.726178706, 4.57763672e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1109 | mesh("SpecialMesh",TN3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994)) | |
1110 | ||
1111 | ||
1112 | TG1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","Handle",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1113 | TG1weld=weld(m,char["HumanoidRootPart"],TG1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.042350769, 2.25753069, -2.74072218, -0.0144443018, -0.00148237997, 0.999894559, 0.138804898, -0.99031961, 0.000536966661, 0.990214407, 0.138798028, 0.0145102367)) | |
1114 | mesh("SpecialMesh",TG1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5)) | |
1115 | AM1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","AM1",Vector3.new(0.953130484, 0.238282651, 0.953130603)) | |
1116 | AM1weld=weld(m,TG1,AM1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.24249268e-05, 0.166828156, 3.09944153e-05, -0.000157195085, 1, 9.1494876e-05, -0.99999994, -0.000157169881, -0.000279594213, -0.000279579312, -9.1555652e-05, 0.99999994)) | |
1117 | mesh("SpecialMesh",AM1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1118 | P1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P1",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1119 | P1weld=weld(m,TG1,P1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.911342621, 0.703609467, 0.114207745, 0.706984818, 0.683136642, 0.183021277, -0.707228661, 0.682939231, 0.182815671, -0.000104348175, -0.258685827, 0.965961576)) | |
1120 | mesh("SpecialMesh",P1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1121 | P10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P10",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1122 | P10weld=weld(m,TG1,P10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.00679016e-05, -0.524249077, 0.166728973, 0.000105811283, -0.000137583454, -1, 0.000479714101, -0.999999821, 0.000137644194, -0.999999821, -0.000479728915, -0.000105744228)) | |
1123 | mesh("SpecialMesh",P10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1124 | P11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P11",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1125 | P11weld=weld(m,TG1,P11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.731900215, 0.270252228, -0.114115238, 0.258668154, 0.93309164, -0.249861524, -0.965966165, 0.249754369, -0.0673211813, -0.000412817113, 0.258771658, 0.965938509)) | |
1126 | mesh("SpecialMesh",P11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1127 | P12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P12",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1128 | P12weld=weld(m,TG1,P12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.731903076, 0.27022934, 0.114096642, 0.258535415, 0.933087707, 0.250022143, -0.966005266, 0.24975659, 0.066811718, -0.000106466934, -0.258798361, 0.965934813)) | |
1129 | mesh("SpecialMesh",P12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1130 | P13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P13",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1131 | P13weld=weld(m,TG1,P13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000140666962, -0.333644867, 0.357366562, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527)) | |
1132 | mesh("SpecialMesh",P13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1133 | P14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P14",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1134 | P14weld=weld(m,TG1,P14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.43051147e-06, -0.333572388, -0.119208813, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527)) | |
1135 | mesh("SpecialMesh",P14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1136 | P15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P15",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1137 | P15weld=weld(m,TG1,P15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 0.99999994, 1.16415322e-10, -9.31322575e-10, 1.16415322e-10, 1, -1.79352355e-09, -9.31322575e-10, -1.79352355e-09, 1)) | |
1138 | mesh("SpecialMesh",P15,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048)) | |
1139 | P16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P16",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1140 | P16weld=weld(m,TG1,P16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000156879425, -0.524261951, 0.166660309, 0.000348402828, -0.99999994, -0.00028672372, 1.2637116e-05, -0.000286738126, 0.99999994, -0.999999881, -0.000348406611, 1.25393271e-05)) | |
1141 | mesh("SpecialMesh",P16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1142 | P2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P2",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1143 | P2weld=weld(m,TG1,P2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114342928, -1.26896286, 0.703344345, -8.68691131e-05, 0.25868696, -0.965961158, -0.706778944, -0.683370173, -0.18294476, -0.707434416, 0.682705104, 0.182893887)) | |
1144 | mesh("SpecialMesh",P2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1145 | P3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P3",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1146 | P3weld=weld(m,TG1,P3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.9112854, 0.703716278, -0.114027977, 0.707162201, 0.682978034, -0.182929516, -0.707051754, 0.683040321, -0.183125019, -0.000122674741, 0.258839428, 0.965920746)) | |
1147 | mesh("SpecialMesh",P3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1148 | P4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P4",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1149 | P4weld=weld(m,TG1,P4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.04713726, -0.0560836792, 0.589748383, -0.433230519, 0.499762714, 0.750031829, 0.249949813, 0.866157889, -0.432767093, -0.865926266, -1.81881187e-05, -0.500163496)) | |
1150 | mesh("SpecialMesh",P4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1151 | P5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P5",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1152 | P5weld=weld(m,TG1,P5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110613346, -1.25364304, 0.687784195, 2.46139243e-05, -0.258755654, -0.96594286, -0.706809103, -0.683316648, 0.183028057, -0.707404375, 0.682732642, -0.182907671)) | |
1153 | mesh("SpecialMesh",P5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1154 | P6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P6",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1155 | P6weld=weld(m,TG1,P6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0552225113, -0.590129852, 1.40441322, 0.249802664, 0.865931273, -0.433314741, 0.865909696, 0.000505216594, 0.500199974, 0.433357745, -0.50016278, -0.749692082)) | |
1156 | mesh("SpecialMesh",P6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1157 | P7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P7",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1158 | P7weld=weld(m,TG1,P7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.76527071, 0.166690826, 0.0566182137, 0.000211901963, -0.499973178, -0.866040885, -0.999999881, -0.000433116395, 5.36441803e-06, -0.000377777033, 0.866040766, -0.499973238)) | |
1159 | mesh("SpecialMesh",P7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1160 | P8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P8",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1161 | P8weld=weld(m,TG1,P8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(6.58035278e-05, -0.333610535, 0.11908865, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527)) | |
1162 | mesh("SpecialMesh",P8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1163 | P9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P9",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1164 | P9weld=weld(m,TG1,P9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.72340393e-05, -0.333576202, -0.357462883, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527)) | |
1165 | mesh("SpecialMesh",P9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1166 | ||
1167 | ||
1168 | TG2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603)) | |
1169 | TG2weld=weld(m,char["HumanoidRootPart"],TG2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.76916337, -1.09253693, -3.17651272, -0.203467354, -0.97908175, 0.000212302519, 0.014012184, -0.00312875048, -0.999896944, 0.978981495, -0.203443378, 0.0143556716)) | |
1170 | mesh("SpecialMesh",TG2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1171 | AM2=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","AM2",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1172 | AM2weld=weld(m,TG2,AM2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166828156, 3.64780426e-05, 2.43186951e-05, -0.000192319567, -1, -0.000198441558, 0.99999994, -0.000192359177, 0.000197284782, -0.000197345667, -0.000198401511, 1)) | |
1173 | mesh("SpecialMesh",AM2,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5)) | |
1174 | R1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R1",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1175 | R1weld=weld(m,TG2,R1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0134754181, -0.445617676, 1.47668266, 0.865856409, -0.250035048, -0.433330387, 0.000181133975, -0.865997136, 0.500049055, -0.500292599, -0.433049113, -0.749783754)) | |
1176 | mesh("SpecialMesh",R1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1177 | R10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R10",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1178 | R10weld=weld(m,TG2,R10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.765271187, -0.000122070312, 0.0565447211, -0.49987632, 6.51674345e-05, -0.866096556, -0.000113177681, 0.999999881, 0.000140445307, 0.866096616, 0.000168018509, -0.49987638)) | |
1179 | mesh("SpecialMesh",R10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1180 | R11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R11",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1181 | R11weld=weld(m,TG2,R11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775099754, 0.109127045, -0.114162922, 0.93301934, -0.258937955, -0.249852076, 0.250070184, 0.965893984, -0.0671848729, 0.258727312, 0.000204227865, 0.965950489)) | |
1182 | mesh("SpecialMesh",R11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1183 | R12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R12",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1184 | R12weld=weld(m,TG2,R12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.5340271e-05, -0.166751862, -0.357446432, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168)) | |
1185 | mesh("SpecialMesh",R12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1186 | R13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R13",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1187 | R13weld=weld(m,TG2,R13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775063515, 0.109107971, 0.114238739, 0.933033288, -0.258907735, 0.249831468, 0.250103503, 0.96590209, 0.0669436976, -0.258645028, 2.30353326e-05, 0.965972483)) | |
1188 | mesh("SpecialMesh",R13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1189 | R14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R14",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1190 | R14weld=weld(m,TG2,R14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16683197, 4.8160553e-05, 5.29289246e-05, -0.000261391891, -0.999999881, -0.000371804461, 0.99999994, -0.000261496811, 0.000282098801, -0.000282215682, -0.000371729024, 0.999999881)) | |
1191 | mesh("SpecialMesh",R14,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048)) | |
1192 | R15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R15",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1193 | R15weld=weld(m,TG2,R15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000193595886, -0.524248123, -0.000160217285, -1, -1.53651927e-05, -0.000401128491, -0.000401158031, -0.000155125745, 0.999999881, -1.54274312e-05, 1, 0.000155119225)) | |
1194 | mesh("SpecialMesh",R15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1195 | R16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R16",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1196 | R16weld=weld(m,TG2,R16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.10623169e-06, -0.524226427, -0.000118255615, -1.7896502e-05, 3.39159742e-05, -1, -0.99999994, -0.00018825283, 1.79418876e-05, -0.000188252423, 1, 3.39206308e-05)) | |
1197 | mesh("SpecialMesh",R16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1198 | R2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R2",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1199 | R2weld=weld(m,TG2,R2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110644341, -1.37159348, 0.569787979, -0.25872317, 0.000103516504, -0.965960801, -0.683125854, 0.706990838, 0.183048159, 0.68293786, 0.707234144, -0.182844043)) | |
1200 | mesh("SpecialMesh",R2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1201 | R3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R3",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1202 | R3weld=weld(m,TG2,R3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.11937332, -0.014339447, 0.445285797, 0.499887019, 0.432952553, 0.75011003, 0.866090596, -0.250205398, -0.432763666, 0.000315477257, 0.865996122, -0.500050545)) | |
1203 | mesh("SpecialMesh",R3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1204 | R4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R4",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1205 | R4weld=weld(m,TG2,R4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114369392, -1.38692093, 0.585348129, 0.258709073, 0.00012283586, -0.965955317, -0.683140814, 0.707019031, -0.182873711, 0.682926297, 0.707194507, 0.182996109)) | |
1206 | mesh("SpecialMesh",R4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1207 | R5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R5",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1208 | R5weld=weld(m,TG2,R5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02929306, 0.585784912, -0.114109039, 0.682771325, -0.707353652, -0.182959229, 0.683289289, 0.706859827, -0.182934627, 0.258725971, -0.000111560337, 0.965950847)) | |
1209 | mesh("SpecialMesh",R5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1210 | R6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R6",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1211 | R6weld=weld(m,TG2,R6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(9.6321106e-05, -0.166820526, 0.357390642, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168)) | |
1212 | mesh("SpecialMesh",R6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1213 | R7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R7",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1214 | R7weld=weld(m,TG2,R7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, -0.166748047, -0.11918807, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168)) | |
1215 | mesh("SpecialMesh",R7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1216 | R8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R8",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1217 | R8weld=weld(m,TG2,R8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02933121, 0.585668564, 0.114168167, 0.682898223, -0.707234383, 0.182947412, 0.683152735, 0.706979275, 0.182982892, -0.258751839, 2.23368406e-05, 0.965943873)) | |
1218 | mesh("SpecialMesh",R8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1219 | R9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R9",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1220 | R9weld=weld(m,TG2,R9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.33786011e-05, -0.166786194, 0.119110346, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168)) | |
1221 | mesh("SpecialMesh",R9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1222 | ||
1223 | ||
1224 | TG3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603)) | |
1225 | TG3weld=weld(m,char["HumanoidRootPart"],TG3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.31476164, 0.203437805, 2.80334663, -0.128740072, -0.991682827, 0.00021147728, 0.0140880942, -0.00204598904, -0.999902606, 0.991582751, -0.128720194, 0.0142298341)) | |
1226 | mesh("SpecialMesh",TG3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1227 | AM3=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","AM3",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1228 | AM3weld=weld(m,TG3,AM3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166828156, 3.67164612e-05, 1.04904175e-05, -0.000191303392, -1.00000393, -0.000253161415, 1.00000441, -0.000187523692, 0.000130466695, -0.000134325906, -0.000248713419, 1.00000381)) | |
1229 | mesh("SpecialMesh",AM3,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5)) | |
1230 | B1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B1",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1231 | B1weld=weld(m,TG3,B1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.70809412, 0.00481796265, -0.0214853287, 0.53710258, -0.0329185463, -0.842881262, -0.0168763734, -0.999461472, 0.0282779075, -0.843353331, -0.00096894661, -0.537363231)) | |
1232 | mesh("SpecialMesh",B1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1233 | B10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B10",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1234 | B10weld=weld(m,TG3,B10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, -0.166755676, -0.119180202, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779)) | |
1235 | mesh("SpecialMesh",B10,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1236 | B11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B11",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1237 | B11weld=weld(m,TG3,B11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775104523, 0.109054565, -0.114163399, 0.93302691, -0.258820474, -0.249937788, 0.249989182, 0.965924561, -0.0670276657, 0.258770257, 5.44674695e-05, 0.965937078)) | |
1238 | mesh("SpecialMesh",B11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1239 | B12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B12",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1240 | B12weld=weld(m,TG3,B12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.2479248e-05, -0.16677475, -0.357437134, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779)) | |
1241 | mesh("SpecialMesh",B12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1242 | B13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B13",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1243 | B13weld=weld(m,TG3,B13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(9.6321106e-05, -0.166809082, 0.357398033, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779)) | |
1244 | mesh("SpecialMesh",B13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1245 | B14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B14",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1246 | B14weld=weld(m,TG3,B14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775089264, 0.109050751, 0.114126205, 0.933031797, -0.258863419, 0.249890804, 0.250038087, 0.965917766, 0.0670325682, -0.258728862, -5.84023073e-05, 0.965954661)) | |
1247 | mesh("SpecialMesh",B14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1248 | B15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B15",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1249 | B15weld=weld(m,TG3,B15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000216007233, -0.524245262, -0.000152587891, -1.00000429, -3.11442855e-05, -0.000386493775, -0.000390294503, -0.000265599228, 1.00000381, -2.74346676e-05, 1.00000393, 0.000270009041)) | |
1250 | mesh("SpecialMesh",B15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1251 | B16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B16",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1252 | B16weld=weld(m,TG3,B16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.977258682, -0.0517673492, 0.351222992, -0.542918801, -0.399409056, 0.738729894, 0.839790225, -0.257581204, 0.47791937, -0.000600833155, 0.879847884, 0.475267261)) | |
1253 | mesh("SpecialMesh",B16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1254 | B2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B2",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1255 | B2weld=weld(m,TG3,B2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110642433, -1.37159348, 0.569799423, -0.258739293, 0.00030168239, -0.965950191, -0.683101058, 0.706977069, 0.183202252, 0.682960927, 0.707241893, -0.182715356)) | |
1256 | mesh("SpecialMesh",B2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1257 | B3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B3",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1258 | B3weld=weld(m,TG3,B3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114408493, -1.38694382, 0.585298538, 0.258632272, 0.000245507807, -0.965980828, -0.683182418, 0.707017481, -0.182730928, 0.682920158, 0.7072016, 0.183024958)) | |
1259 | mesh("SpecialMesh",B3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1260 | B4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B4",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1261 | B4weld=weld(m,TG3,B4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.14712524e-05, -0.524226665, -0.000114440918, -0.000117740456, 0.000170248561, -1.00000381, -1.00000441, -0.000197534246, 0.000121528283, -0.000193700951, 1.00000393, 0.000174695626)) | |
1262 | mesh("SpecialMesh",B4,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1263 | B5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B5",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1264 | B5weld=weld(m,TG3,B5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166828156, 3.67164612e-05, 1.04904175e-05, -0.000191303392, -1.00000393, -0.000253161415, 1.00000441, -0.000187523692, 0.000130466695, -0.000134325906, -0.000248713419, 1.00000381)) | |
1265 | mesh("SpecialMesh",B5,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048)) | |
1266 | B6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B6",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1267 | B6weld=weld(m,TG3,B6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0746879578, -0.356079102, 1.3260231, -0.846059859, 0.246211126, -0.472827435, 0.0127377426, -0.877367735, -0.479661644, -0.532944143, -0.411842138, 0.73916626)) | |
1268 | mesh("SpecialMesh",B6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1269 | B7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B7",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1270 | B7weld=weld(m,TG3,B7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02930832, 0.585767746, -0.114040375, 0.682766974, -0.707316399, -0.183130339, 0.683257401, 0.706901014, -0.182916299, 0.258831084, -0.000232725404, 0.965924442)) | |
1271 | mesh("SpecialMesh",B7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1272 | B8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B8",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1273 | B8weld=weld(m,TG3,B8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02937317, 0.585603714, 0.114164352, 0.682955801, -0.707211196, 0.182828441, 0.683118403, 0.707007945, 0.183033586, -0.258707404, -0.000107087195, 0.965960801)) | |
1274 | mesh("SpecialMesh",B8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1275 | B9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B9",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1276 | B9weld=weld(m,TG3,B9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.24249268e-05, -0.166786194, 0.11911726, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779)) | |
1277 | mesh("SpecialMesh",B9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1278 | ||
1279 | ||
1280 | TG4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603)) | |
1281 | TG4weld=weld(m,char["HumanoidRootPart"],TG4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.701898575, -1.07242584, 3.10196733, 0.247876227, -0.968791723, 0.000235861822, 0.0139541421, 0.00332688913, -0.999897122, 0.968691289, 0.247854009, 0.0143433129)) | |
1282 | mesh("SpecialMesh",TG4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1283 | AM4=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","AM4",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1284 | AM4weld=weld(m,TG4,AM4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16683197, 5.14984131e-05, 2.57492065e-05, -0.000262918446, -0.99999994, -0.000245724805, 1, -0.000262905785, -5.22979026e-05, 5.22422997e-05, -0.000245738775, 1)) | |
1285 | mesh("SpecialMesh",AM4,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5)) | |
1286 | Q1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q1",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1287 | Q1weld=weld(m,TG4,Q1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02936554, 0.58564949, 0.114022255, 0.682914674, -0.707203865, 0.183003649, 0.683140576, 0.707009733, 0.182910576, -0.258740425, 0.000104899518, 0.965946913)) | |
1288 | mesh("SpecialMesh",Q1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1289 | Q10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q10",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1290 | Q10weld=weld(m,TG4,Q10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.91278076e-05, -0.524228096, -0.00012588501, -0.000225846947, 8.19889829e-05, -1.00000644, -1.00000012, -0.000232773818, 0.000224219271, -0.000232745646, 1.00000644, 8.20420682e-05)) | |
1291 | mesh("SpecialMesh",Q10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1292 | Q11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q11",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1293 | Q11weld=weld(m,TG4,Q11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0746479034, -0.356128693, 1.32600975, -0.846081793, 0.246080905, -0.472852886, 0.0128138652, -0.877419651, -0.479552537, -0.532899082, -0.411799699, 0.739215553)) | |
1294 | mesh("SpecialMesh",Q11,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1295 | Q12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q12",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1296 | Q12weld=weld(m,TG4,Q12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.977277756, -0.0517272949, 0.351173401, -0.542923808, -0.399282485, 0.73878783, 0.839781821, -0.257620722, 0.477910042, -0.000494024833, 0.87988919, 0.47517857)) | |
1297 | mesh("SpecialMesh",Q12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1298 | Q13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q13",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1299 | Q13weld=weld(m,TG4,Q13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.708095074, 0.00480651855, -0.0214424133, 0.537001133, -0.0329830386, -0.842936516, -0.016877139, -0.999455392, 0.0283556767, -0.843412697, -0.0010006763, -0.53726542)) | |
1300 | mesh("SpecialMesh",Q13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1301 | Q14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q14",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1302 | Q14weld=weld(m,TG4,Q14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110631943, -1.37159348, 0.569797516, -0.258814424, 0.000158959068, -0.965927124, -0.683109343, 0.706977546, 0.183151439, 0.682917833, 0.707235932, -0.182867393)) | |
1303 | mesh("SpecialMesh",Q14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1304 | Q15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q15",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1305 | Q15weld=weld(m,TG4,Q15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114351273, -1.38692474, 0.585363388, 0.258614838, 0.000151800923, -0.965980589, -0.68317169, 0.707010865, -0.182789415, 0.682931006, 0.707202673, 0.182947218)) | |
1306 | mesh("SpecialMesh",Q15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1307 | Q16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q16",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1308 | Q16weld=weld(m,TG4,Q16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02927017, 0.585828781, -0.1140728, 0.682736814, -0.707362711, -0.183043808, 0.683264673, 0.706848323, -0.183054447, 0.258872002, -9.22912732e-05, 0.965909958)) | |
1309 | mesh("SpecialMesh",Q16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1310 | Q2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q2",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1311 | Q2weld=weld(m,TG4,Q2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.95639038e-05, -0.166786194, 0.119113445, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135)) | |
1312 | mesh("SpecialMesh",Q2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1313 | Q3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q3",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1314 | Q3weld=weld(m,TG4,Q3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.57492065e-05, -0.166748047, -0.119185925, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135)) | |
1315 | mesh("SpecialMesh",Q3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1316 | Q4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q4",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1317 | Q4weld=weld(m,TG4,Q4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775097847, 0.109146118, -0.114173889, 0.932992756, -0.258940458, -0.249948949, 0.250075579, 0.965893269, -0.0671743006, 0.258818179, 0.000166995451, 0.965926051)) | |
1318 | mesh("SpecialMesh",Q4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1319 | Q5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q5",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1320 | Q5weld=weld(m,TG4,Q5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.91549683e-05, -0.166755676, -0.357444286, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135)) | |
1321 | mesh("SpecialMesh",Q5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1322 | Q6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q6",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1323 | Q6weld=weld(m,TG4,Q6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(9.44137573e-05, -0.166820526, 0.357393742, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135)) | |
1324 | mesh("SpecialMesh",Q6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1325 | Q7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q7",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1326 | Q7weld=weld(m,TG4,Q7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16683197, 5.14984131e-05, 2.57492065e-05, -0.000262918446, -0.99999994, -0.000245724805, 1, -0.000262905785, -5.22979026e-05, 5.22422997e-05, -0.000245738775, 1)) | |
1327 | mesh("SpecialMesh",Q7,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048)) | |
1328 | Q8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q8",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1329 | Q8weld=weld(m,TG4,Q8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.77507782, 0.109096527, 0.11418438, 0.933048368, -0.258882731, 0.249801114, 0.250101715, 0.965908766, 0.0668535084, -0.258592248, 9.8134391e-05, 0.965986609)) | |
1330 | mesh("SpecialMesh",Q8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1331 | Q9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q9",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1332 | Q9weld=weld(m,TG4,Q9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000154495239, -0.524244308, -0.000152587891, -1, -2.11830047e-05, -0.000211575112, -0.000211558785, -0.000157893635, 1, -2.12165178e-05, 0.99999994, 0.00015788991)) | |
1333 | mesh("SpecialMesh",Q9,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1334 | ||
1335 | ||
1336 | MN=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","Handle",Vector3.new(1.09732866, 2.19465828, 1.09732854)) | |
1337 | MNweld=weld(m,char["Left Arm"],MN,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0323486328, -0.0509860516, -0.00120401382, -0.00500982394, 0.00520668458, 0.999973893, -0.00739898486, 0.999958873, -0.00524367485, -0.999960065, -0.00742506143, -0.0049710935)) | |
1338 | TR7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR7",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1339 | TR7weld=weld(m,MN,TR7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393)) | |
1340 | mesh("SpecialMesh",TR7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997)) | |
1341 | MD9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD9",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1342 | MD9weld=weld(m,MN,MD9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.741846681, 0.199262142, 1.00000405, -6.92205504e-06, 0.000154254027, 4.65649646e-05, 0.965939224, -0.25876984, -0.000147186685, 0.258768767, 0.965943158)) | |
1343 | mesh("SpecialMesh",MD9,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998)) | |
1344 | MD1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD1",Vector3.new(0.237408489, 0.259352177, 0.518704116)) | |
1345 | MD1weld=weld(m,MN,MD1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.402763367, -0.974855185, 0.682875633, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079)) | |
1346 | mesh("SpecialMesh",MD1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1347 | MD10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD10",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1348 | MD10weld=weld(m,MN,MD10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1349 | mesh("SpecialMesh",MD10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1350 | MD11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD11",Vector3.new(0.266768694, 1.09732914, 0.658397138)) | |
1351 | MD11weld=weld(m,MN,MD11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.493839264, -0.274354219, 4.24385071e-05, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1352 | mesh("SpecialMesh",MD11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999)) | |
1353 | MD12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD12",Vector3.new(0.266768694, 1.09732914, 0.658397138)) | |
1354 | MD12weld=weld(m,MN,MD12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.493812561, -0.274300575, -0.000376224518, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1355 | mesh("SpecialMesh",MD12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999)) | |
1356 | MD13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD13",Vector3.new(1.09732866, 0.822996795, 1.09732854)) | |
1357 | MD13weld=weld(m,MN,MD13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.68582201, 0.000464439392, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1358 | mesh("SpecialMesh",MD13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1359 | MD14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD14",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1360 | MD14weld=weld(m,MN,MD14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.603547096, 0.000416755676, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1361 | mesh("SpecialMesh",MD14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995)) | |
1362 | MD15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD15",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1363 | MD15weld=weld(m,MN,MD15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.62939453e-05, 0.137180567, -4.529953e-05, -1.0000037, -0.000862163957, 0.000179466791, -0.000862103421, 0.999999523, 0.000520790287, -0.000179945491, 0.000520619913, -1.00000381)) | |
1364 | mesh("SpecialMesh",MD15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1365 | MD16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD16",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1366 | MD16weld=weld(m,MN,MD16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.86645508e-05, 0.932742357, 0.000658988953, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1367 | mesh("SpecialMesh",MD16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995)) | |
1368 | MD19=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD19",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1369 | MD19weld=weld(m,MN,MD19,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393)) | |
1370 | mesh("SpecialMesh",MD19,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998)) | |
1371 | MD18=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD18",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1372 | MD18weld=weld(m,MN,MD18,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1373 | mesh("SpecialMesh",MD18,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998)) | |
1374 | MD2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD2",Vector3.new(0.2574085, 0.259352177, 0.518704116)) | |
1375 | MD2weld=weld(m,MN,MD2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.392555237, -0.573539257, 1.09872949, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516)) | |
1376 | mesh("SpecialMesh",MD2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1377 | MD3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD3",Vector3.new(0.247408509, 0.259352177, 0.518704116)) | |
1378 | MD3weld=weld(m,MN,MD3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.397964478, -0.817667723, 0.487944126, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668)) | |
1379 | mesh("SpecialMesh",MD3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1380 | MD4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD4",Vector3.new(0.247408509, 0.259352177, 0.518704116)) | |
1381 | MD4weld=weld(m,MN,MD4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.422103882, -0.82026124, 0.507567406, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668)) | |
1382 | mesh("SpecialMesh",MD4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1383 | MD5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD5",Vector3.new(0.2574085, 0.259352177, 0.518704116)) | |
1384 | MD5weld=weld(m,MN,MD5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.427509308, -0.557831764, 1.11046171, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516)) | |
1385 | mesh("SpecialMesh",MD5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1386 | MD6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD6",Vector3.new(0.237408489, 0.259352177, 0.518704116)) | |
1387 | MD6weld=weld(m,MN,MD6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417263031, -0.972257376, 0.702233315, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079)) | |
1388 | mesh("SpecialMesh",MD6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1389 | MD7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD7",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1390 | MD7weld=weld(m,MN,MD7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393)) | |
1391 | mesh("SpecialMesh",MD7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1392 | MD8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD8",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1393 | MD8weld=weld(m,MN,MD8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1394 | mesh("SpecialMesh",MD8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998)) | |
1395 | TR1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR1",Vector3.new(0.266768694, 0.54866457, 0.548664272)) | |
1396 | TR1weld=weld(m,MN,TR1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548826218, 0.30154109, 4.57763672e-05, -0.000205519143, -0.0001726388, -1, -4.31765802e-05, 1, -0.00017263052, 1, 4.314119e-05, -0.000205526594)) | |
1397 | mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048)) | |
1398 | TR2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1399 | TR2weld=weld(m,MN,TR2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, 0.741921067, 0.198978901, 1.00000405, -2.92747281e-05, -1.7457176e-05, 2.37242784e-05, 0.965939343, -0.258769363, 2.44602561e-05, 0.25876832, 0.965943277)) | |
1400 | mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997)) | |
1401 | TR3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1402 | TR3weld=weld(m,MN,TR3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.603546381, 0.000186920166, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775)) | |
1403 | mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994)) | |
1404 | TR4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1405 | TR4weld=weld(m,MN,TR4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000106811523, 0.93274045, 0.000304222107, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775)) | |
1406 | mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994)) | |
1407 | TR5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1408 | TR5weld=weld(m,MN,TR5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1409 | mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997)) | |
1410 | TR6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1411 | TR6weld=weld(m,MN,TR6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1412 | mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997)) | |
1413 | MD21=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272)) | |
1414 | MD21weld=weld(m,MN,MD21,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548921585, 0.301375628, 0.000118255615, -0.000262488145, -9.39509191e-05, -1.00000393, -0.000154611655, 1, -9.38984886e-05, 1.00000393, 0.000154557638, -0.000262471847)) | |
1415 | mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036)) | |
1416 | ||
1417 | ||
1418 | MN=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","Handle",Vector3.new(1.03740847, 2.07481742, 1.03740823)) | |
1419 | MNweld=weld(m,char["Left Leg"],MN,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00872802734, 0.00284510851, -0.0114479065, 0.000559218752, 0.00461495388, -0.999989212, 0.0116515048, 0.999921441, 0.00462115649, 0.999931991, -0.0116539635, 0.000505403674)) | |
1420 | FB1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB1",Vector3.new(0.252201617, 1.03740871, 0.622444928)) | |
1421 | FB1weld=weld(m,MN,FB1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.466812134, -0.259373605, 4.19616699e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1422 | mesh("SpecialMesh",FB1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999)) | |
1423 | FB10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB10",Vector3.new(1.03740847, 0.259352177, 1.03740823)) | |
1424 | FB10weld=weld(m,MN,FB10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.14440918e-05, -0.907726586, -0.0001745224, -1.00000012, -4.3686945e-05, -0.000145533413, -4.37181443e-05, 1, 0.00021532696, 0.000145524042, 0.000215333974, -1)) | |
1425 | mesh("SpecialMesh",FB10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1426 | FB11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","FB11",Vector3.new(0.518704236, 0.778056443, 0.252201557)) | |
1427 | FB11weld=weld(m,MN,FB11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.49278298, -0.518682957, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1428 | mesh("SpecialMesh",FB11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 0.415454417)) | |
1429 | FB12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB12",Vector3.new(1.03740847, 0.778056443, 1.03740823)) | |
1430 | FB12weld=weld(m,MN,FB12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.14440918e-05, 0.648371816, 1.38282776e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1431 | mesh("SpecialMesh",FB12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1432 | FB2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","FB2",Vector3.new(1.03740847, 0.252201647, 1.03740823)) | |
1433 | FB2weld=weld(m,MN,FB2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-05, 0.726178706, 4.57763672e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1434 | mesh("SpecialMesh",FB2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995)) | |
1435 | FB3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB3",Vector3.new(1.03740847, 0.259352177, 0.518704116)) | |
1436 | FB3weld=weld(m,MN,FB3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000141143799, -0.907841623, 0.725996017, -1.00000012, -4.3686945e-05, -0.000145533413, -4.37181443e-05, 1, 0.00021532696, 0.000145524042, 0.000215333974, -1)) | |
1437 | mesh("SpecialMesh",FB3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1438 | FB4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB4",Vector3.new(1.03740847, 0.259352177, 0.518704116)) | |
1439 | FB4weld=weld(m,MN,FB4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000263214111, -0.495628834, 1.08177543, -1, -0.000208274461, -0.000166981248, -2.93208286e-05, 0.707433105, -0.706780434, 0.000265331706, -0.706780314, -0.707433105)) | |
1440 | mesh("SpecialMesh",FB4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1441 | FB5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","FB5",Vector3.new(1.03740847, 0.252201647, 1.03740823)) | |
1442 | FB5weld=weld(m,MN,FB5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.67028809e-05, 0.933657289, 6.19888306e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1443 | mesh("SpecialMesh",FB5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995)) | |
1444 | FB6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB6",Vector3.new(1.03740847, 0.259352177, 1.03740823)) | |
1445 | FB6weld=weld(m,MN,FB6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.81469727e-06, 0.129679263, 3.29017639e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1446 | mesh("SpecialMesh",FB6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1447 | FB7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB7",Vector3.new(0.252201617, 1.03740871, 0.622444928)) | |
1448 | FB7weld=weld(m,MN,FB7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.466838837, -0.259338915, -8.58306885e-06, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1449 | mesh("SpecialMesh",FB7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999)) | |
1450 | FB8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB8",Vector3.new(1.03740847, 0.259352177, 0.518704116)) | |
1451 | FB8weld=weld(m,MN,FB8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000205993652, -0.764207125, 0.546924591, -0.999995053, -0.000121198129, -0.00017335522, -0.000163274352, 0.965882957, 0.258978456, 0.000135882699, 0.258978575, -0.96587801)) | |
1452 | mesh("SpecialMesh",FB8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1453 | FB9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB9",Vector3.new(1.03740847, 0.259352177, 1.03740823)) | |
1454 | FB9weld=weld(m,MN,FB9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00023651123, 0.648379326, -0.000217437744, -0.99999994, 0.00030120369, -0.00014261005, -0.000301247928, -0.999999821, 0.000302845408, -0.000142518838, 0.000302889268, 1)) | |
1455 | mesh("SpecialMesh",FB9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1456 | TN1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TN1",Vector3.new(1.03740847, 0.252201647, 1.03740823)) | |
1457 | TN1weld=weld(m,MN,TN1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.67028809e-05, 0.933657289, 6.19888306e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1458 | mesh("SpecialMesh",TN1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994)) | |
1459 | TN2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TN2",Vector3.new(0.518704236, 0.778056443, 0.252201557)) | |
1460 | TN2weld=weld(m,MN,TN2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.49278298, -0.518682957, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1461 | mesh("SpecialMesh",TN2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.899999917, 0.899999917, 0.419567823)) | |
1462 | TN3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TN3",Vector3.new(1.03740847, 0.252201647, 1.03740823)) | |
1463 | TN3weld=weld(m,MN,TN3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-05, 0.726178706, 4.57763672e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
1464 | mesh("SpecialMesh",TN3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994)) | |
1465 | ||
1466 | ||
1467 | TG1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","Handle",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1468 | TG1weld=weld(m,char["HumanoidRootPart"],TG1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.042350769, 2.25753069, -2.74072218, -0.0144443018, -0.00148237997, 0.999894559, 0.138804898, -0.99031961, 0.000536966661, 0.990214407, 0.138798028, 0.0145102367)) | |
1469 | mesh("SpecialMesh",TG1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5)) | |
1470 | AM1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","AM1",Vector3.new(0.953130484, 0.238282651, 0.953130603)) | |
1471 | AM1weld=weld(m,TG1,AM1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.24249268e-05, 0.166828156, 3.09944153e-05, -0.000157195085, 1, 9.1494876e-05, -0.99999994, -0.000157169881, -0.000279594213, -0.000279579312, -9.1555652e-05, 0.99999994)) | |
1472 | mesh("SpecialMesh",AM1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1473 | P1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P1",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1474 | P1weld=weld(m,TG1,P1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.911342621, 0.703609467, 0.114207745, 0.706984818, 0.683136642, 0.183021277, -0.707228661, 0.682939231, 0.182815671, -0.000104348175, -0.258685827, 0.965961576)) | |
1475 | mesh("SpecialMesh",P1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1476 | P10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P10",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1477 | P10weld=weld(m,TG1,P10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.00679016e-05, -0.524249077, 0.166728973, 0.000105811283, -0.000137583454, -1, 0.000479714101, -0.999999821, 0.000137644194, -0.999999821, -0.000479728915, -0.000105744228)) | |
1478 | mesh("SpecialMesh",P10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1479 | P11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P11",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1480 | P11weld=weld(m,TG1,P11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.731900215, 0.270252228, -0.114115238, 0.258668154, 0.93309164, -0.249861524, -0.965966165, 0.249754369, -0.0673211813, -0.000412817113, 0.258771658, 0.965938509)) | |
1481 | mesh("SpecialMesh",P11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1482 | P12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P12",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1483 | P12weld=weld(m,TG1,P12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.731903076, 0.27022934, 0.114096642, 0.258535415, 0.933087707, 0.250022143, -0.966005266, 0.24975659, 0.066811718, -0.000106466934, -0.258798361, 0.965934813)) | |
1484 | mesh("SpecialMesh",P12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1485 | P13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P13",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1486 | P13weld=weld(m,TG1,P13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000140666962, -0.333644867, 0.357366562, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527)) | |
1487 | mesh("SpecialMesh",P13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1488 | P14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P14",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1489 | P14weld=weld(m,TG1,P14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.43051147e-06, -0.333572388, -0.119208813, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527)) | |
1490 | mesh("SpecialMesh",P14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1491 | P15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P15",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1492 | P15weld=weld(m,TG1,P15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 0.99999994, 1.16415322e-10, -9.31322575e-10, 1.16415322e-10, 1, -1.79352355e-09, -9.31322575e-10, -1.79352355e-09, 1)) | |
1493 | mesh("SpecialMesh",P15,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048)) | |
1494 | P16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P16",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1495 | P16weld=weld(m,TG1,P16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000156879425, -0.524261951, 0.166660309, 0.000348402828, -0.99999994, -0.00028672372, 1.2637116e-05, -0.000286738126, 0.99999994, -0.999999881, -0.000348406611, 1.25393271e-05)) | |
1496 | mesh("SpecialMesh",P16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1497 | P2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P2",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1498 | P2weld=weld(m,TG1,P2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114342928, -1.26896286, 0.703344345, -8.68691131e-05, 0.25868696, -0.965961158, -0.706778944, -0.683370173, -0.18294476, -0.707434416, 0.682705104, 0.182893887)) | |
1499 | mesh("SpecialMesh",P2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1500 | P3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P3",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1501 | P3weld=weld(m,TG1,P3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.9112854, 0.703716278, -0.114027977, 0.707162201, 0.682978034, -0.182929516, -0.707051754, 0.683040321, -0.183125019, -0.000122674741, 0.258839428, 0.965920746)) | |
1502 | mesh("SpecialMesh",P3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1503 | P4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P4",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1504 | P4weld=weld(m,TG1,P4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.04713726, -0.0560836792, 0.589748383, -0.433230519, 0.499762714, 0.750031829, 0.249949813, 0.866157889, -0.432767093, -0.865926266, -1.81881187e-05, -0.500163496)) | |
1505 | mesh("SpecialMesh",P4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1506 | P5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P5",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1507 | P5weld=weld(m,TG1,P5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110613346, -1.25364304, 0.687784195, 2.46139243e-05, -0.258755654, -0.96594286, -0.706809103, -0.683316648, 0.183028057, -0.707404375, 0.682732642, -0.182907671)) | |
1508 | mesh("SpecialMesh",P5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1509 | P6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P6",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1510 | P6weld=weld(m,TG1,P6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0552225113, -0.590129852, 1.40441322, 0.249802664, 0.865931273, -0.433314741, 0.865909696, 0.000505216594, 0.500199974, 0.433357745, -0.50016278, -0.749692082)) | |
1511 | mesh("SpecialMesh",P6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1512 | P7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P7",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1513 | P7weld=weld(m,TG1,P7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.76527071, 0.166690826, 0.0566182137, 0.000211901963, -0.499973178, -0.866040885, -0.999999881, -0.000433116395, 5.36441803e-06, -0.000377777033, 0.866040766, -0.499973238)) | |
1514 | mesh("SpecialMesh",P7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1515 | P8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P8",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1516 | P8weld=weld(m,TG1,P8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(6.58035278e-05, -0.333610535, 0.11908865, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527)) | |
1517 | mesh("SpecialMesh",P8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1518 | P9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P9",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1519 | P9weld=weld(m,TG1,P9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.72340393e-05, -0.333576202, -0.357462883, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527)) | |
1520 | mesh("SpecialMesh",P9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1521 | ||
1522 | ||
1523 | TG2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603)) | |
1524 | TG2weld=weld(m,char["HumanoidRootPart"],TG2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.76916337, -1.09253693, -3.17651272, -0.203467354, -0.97908175, 0.000212302519, 0.014012184, -0.00312875048, -0.999896944, 0.978981495, -0.203443378, 0.0143556716)) | |
1525 | mesh("SpecialMesh",TG2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1526 | AM2=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","AM2",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1527 | AM2weld=weld(m,TG2,AM2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166828156, 3.64780426e-05, 2.43186951e-05, -0.000192319567, -1, -0.000198441558, 0.99999994, -0.000192359177, 0.000197284782, -0.000197345667, -0.000198401511, 1)) | |
1528 | mesh("SpecialMesh",AM2,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5)) | |
1529 | R1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R1",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1530 | R1weld=weld(m,TG2,R1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0134754181, -0.445617676, 1.47668266, 0.865856409, -0.250035048, -0.433330387, 0.000181133975, -0.865997136, 0.500049055, -0.500292599, -0.433049113, -0.749783754)) | |
1531 | mesh("SpecialMesh",R1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1532 | R10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R10",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1533 | R10weld=weld(m,TG2,R10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.765271187, -0.000122070312, 0.0565447211, -0.49987632, 6.51674345e-05, -0.866096556, -0.000113177681, 0.999999881, 0.000140445307, 0.866096616, 0.000168018509, -0.49987638)) | |
1534 | mesh("SpecialMesh",R10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1535 | R11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R11",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1536 | R11weld=weld(m,TG2,R11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775099754, 0.109127045, -0.114162922, 0.93301934, -0.258937955, -0.249852076, 0.250070184, 0.965893984, -0.0671848729, 0.258727312, 0.000204227865, 0.965950489)) | |
1537 | mesh("SpecialMesh",R11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1538 | R12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R12",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1539 | R12weld=weld(m,TG2,R12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.5340271e-05, -0.166751862, -0.357446432, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168)) | |
1540 | mesh("SpecialMesh",R12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1541 | R13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R13",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1542 | R13weld=weld(m,TG2,R13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775063515, 0.109107971, 0.114238739, 0.933033288, -0.258907735, 0.249831468, 0.250103503, 0.96590209, 0.0669436976, -0.258645028, 2.30353326e-05, 0.965972483)) | |
1543 | mesh("SpecialMesh",R13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1544 | R14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R14",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1545 | R14weld=weld(m,TG2,R14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16683197, 4.8160553e-05, 5.29289246e-05, -0.000261391891, -0.999999881, -0.000371804461, 0.99999994, -0.000261496811, 0.000282098801, -0.000282215682, -0.000371729024, 0.999999881)) | |
1546 | mesh("SpecialMesh",R14,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048)) | |
1547 | R15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R15",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1548 | R15weld=weld(m,TG2,R15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000193595886, -0.524248123, -0.000160217285, -1, -1.53651927e-05, -0.000401128491, -0.000401158031, -0.000155125745, 0.999999881, -1.54274312e-05, 1, 0.000155119225)) | |
1549 | mesh("SpecialMesh",R15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1550 | R16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R16",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1551 | R16weld=weld(m,TG2,R16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.10623169e-06, -0.524226427, -0.000118255615, -1.7896502e-05, 3.39159742e-05, -1, -0.99999994, -0.00018825283, 1.79418876e-05, -0.000188252423, 1, 3.39206308e-05)) | |
1552 | mesh("SpecialMesh",R16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1553 | R2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R2",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1554 | R2weld=weld(m,TG2,R2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110644341, -1.37159348, 0.569787979, -0.25872317, 0.000103516504, -0.965960801, -0.683125854, 0.706990838, 0.183048159, 0.68293786, 0.707234144, -0.182844043)) | |
1555 | mesh("SpecialMesh",R2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1556 | R3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R3",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1557 | R3weld=weld(m,TG2,R3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.11937332, -0.014339447, 0.445285797, 0.499887019, 0.432952553, 0.75011003, 0.866090596, -0.250205398, -0.432763666, 0.000315477257, 0.865996122, -0.500050545)) | |
1558 | mesh("SpecialMesh",R3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1559 | R4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R4",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1560 | R4weld=weld(m,TG2,R4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114369392, -1.38692093, 0.585348129, 0.258709073, 0.00012283586, -0.965955317, -0.683140814, 0.707019031, -0.182873711, 0.682926297, 0.707194507, 0.182996109)) | |
1561 | mesh("SpecialMesh",R4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1562 | R5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R5",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1563 | R5weld=weld(m,TG2,R5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02929306, 0.585784912, -0.114109039, 0.682771325, -0.707353652, -0.182959229, 0.683289289, 0.706859827, -0.182934627, 0.258725971, -0.000111560337, 0.965950847)) | |
1564 | mesh("SpecialMesh",R5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1565 | R6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R6",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1566 | R6weld=weld(m,TG2,R6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(9.6321106e-05, -0.166820526, 0.357390642, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168)) | |
1567 | mesh("SpecialMesh",R6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1568 | R7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R7",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1569 | R7weld=weld(m,TG2,R7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, -0.166748047, -0.11918807, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168)) | |
1570 | mesh("SpecialMesh",R7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1571 | R8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R8",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1572 | R8weld=weld(m,TG2,R8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02933121, 0.585668564, 0.114168167, 0.682898223, -0.707234383, 0.182947412, 0.683152735, 0.706979275, 0.182982892, -0.258751839, 2.23368406e-05, 0.965943873)) | |
1573 | mesh("SpecialMesh",R8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1574 | R9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R9",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1575 | R9weld=weld(m,TG2,R9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.33786011e-05, -0.166786194, 0.119110346, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168)) | |
1576 | mesh("SpecialMesh",R9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1577 | ||
1578 | ||
1579 | TG3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603)) | |
1580 | TG3weld=weld(m,char["HumanoidRootPart"],TG3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.31476164, 0.203437805, 2.80334663, -0.128740072, -0.991682827, 0.00021147728, 0.0140880942, -0.00204598904, -0.999902606, 0.991582751, -0.128720194, 0.0142298341)) | |
1581 | mesh("SpecialMesh",TG3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1582 | AM3=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","AM3",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1583 | AM3weld=weld(m,TG3,AM3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166828156, 3.67164612e-05, 1.04904175e-05, -0.000191303392, -1.00000393, -0.000253161415, 1.00000441, -0.000187523692, 0.000130466695, -0.000134325906, -0.000248713419, 1.00000381)) | |
1584 | mesh("SpecialMesh",AM3,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5)) | |
1585 | B1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B1",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1586 | B1weld=weld(m,TG3,B1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.70809412, 0.00481796265, -0.0214853287, 0.53710258, -0.0329185463, -0.842881262, -0.0168763734, -0.999461472, 0.0282779075, -0.843353331, -0.00096894661, -0.537363231)) | |
1587 | mesh("SpecialMesh",B1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1588 | B10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B10",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1589 | B10weld=weld(m,TG3,B10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, -0.166755676, -0.119180202, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779)) | |
1590 | mesh("SpecialMesh",B10,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1591 | B11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B11",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1592 | B11weld=weld(m,TG3,B11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775104523, 0.109054565, -0.114163399, 0.93302691, -0.258820474, -0.249937788, 0.249989182, 0.965924561, -0.0670276657, 0.258770257, 5.44674695e-05, 0.965937078)) | |
1593 | mesh("SpecialMesh",B11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1594 | B12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B12",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1595 | B12weld=weld(m,TG3,B12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.2479248e-05, -0.16677475, -0.357437134, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779)) | |
1596 | mesh("SpecialMesh",B12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1597 | B13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B13",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1598 | B13weld=weld(m,TG3,B13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(9.6321106e-05, -0.166809082, 0.357398033, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779)) | |
1599 | mesh("SpecialMesh",B13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1600 | B14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B14",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1601 | B14weld=weld(m,TG3,B14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775089264, 0.109050751, 0.114126205, 0.933031797, -0.258863419, 0.249890804, 0.250038087, 0.965917766, 0.0670325682, -0.258728862, -5.84023073e-05, 0.965954661)) | |
1602 | mesh("SpecialMesh",B14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1603 | B15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B15",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1604 | B15weld=weld(m,TG3,B15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000216007233, -0.524245262, -0.000152587891, -1.00000429, -3.11442855e-05, -0.000386493775, -0.000390294503, -0.000265599228, 1.00000381, -2.74346676e-05, 1.00000393, 0.000270009041)) | |
1605 | mesh("SpecialMesh",B15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1606 | B16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B16",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1607 | B16weld=weld(m,TG3,B16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.977258682, -0.0517673492, 0.351222992, -0.542918801, -0.399409056, 0.738729894, 0.839790225, -0.257581204, 0.47791937, -0.000600833155, 0.879847884, 0.475267261)) | |
1608 | mesh("SpecialMesh",B16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1609 | B2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B2",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1610 | B2weld=weld(m,TG3,B2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110642433, -1.37159348, 0.569799423, -0.258739293, 0.00030168239, -0.965950191, -0.683101058, 0.706977069, 0.183202252, 0.682960927, 0.707241893, -0.182715356)) | |
1611 | mesh("SpecialMesh",B2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1612 | B3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B3",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1613 | B3weld=weld(m,TG3,B3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114408493, -1.38694382, 0.585298538, 0.258632272, 0.000245507807, -0.965980828, -0.683182418, 0.707017481, -0.182730928, 0.682920158, 0.7072016, 0.183024958)) | |
1614 | mesh("SpecialMesh",B3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1615 | B4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B4",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1616 | B4weld=weld(m,TG3,B4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.14712524e-05, -0.524226665, -0.000114440918, -0.000117740456, 0.000170248561, -1.00000381, -1.00000441, -0.000197534246, 0.000121528283, -0.000193700951, 1.00000393, 0.000174695626)) | |
1617 | mesh("SpecialMesh",B4,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1618 | B5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B5",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1619 | B5weld=weld(m,TG3,B5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166828156, 3.67164612e-05, 1.04904175e-05, -0.000191303392, -1.00000393, -0.000253161415, 1.00000441, -0.000187523692, 0.000130466695, -0.000134325906, -0.000248713419, 1.00000381)) | |
1620 | mesh("SpecialMesh",B5,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048)) | |
1621 | B6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B6",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1622 | B6weld=weld(m,TG3,B6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0746879578, -0.356079102, 1.3260231, -0.846059859, 0.246211126, -0.472827435, 0.0127377426, -0.877367735, -0.479661644, -0.532944143, -0.411842138, 0.73916626)) | |
1623 | mesh("SpecialMesh",B6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1624 | B7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B7",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1625 | B7weld=weld(m,TG3,B7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02930832, 0.585767746, -0.114040375, 0.682766974, -0.707316399, -0.183130339, 0.683257401, 0.706901014, -0.182916299, 0.258831084, -0.000232725404, 0.965924442)) | |
1626 | mesh("SpecialMesh",B7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1627 | B8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B8",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1628 | B8weld=weld(m,TG3,B8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02937317, 0.585603714, 0.114164352, 0.682955801, -0.707211196, 0.182828441, 0.683118403, 0.707007945, 0.183033586, -0.258707404, -0.000107087195, 0.965960801)) | |
1629 | mesh("SpecialMesh",B8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1630 | B9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B9",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1631 | B9weld=weld(m,TG3,B9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.24249268e-05, -0.166786194, 0.11911726, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779)) | |
1632 | mesh("SpecialMesh",B9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1633 | ||
1634 | ||
1635 | ||
1636 | TG4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603)) | |
1637 | TG4weld=weld(m,char["HumanoidRootPart"],TG4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.701898575, -1.07242584, 3.10196733, 0.247876227, -0.968791723, 0.000235861822, 0.0139541421, 0.00332688913, -0.999897122, 0.968691289, 0.247854009, 0.0143433129)) | |
1638 | mesh("SpecialMesh",TG4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1639 | AM4=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","AM4",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1640 | AM4weld=weld(m,TG4,AM4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16683197, 5.14984131e-05, 2.57492065e-05, -0.000262918446, -0.99999994, -0.000245724805, 1, -0.000262905785, -5.22979026e-05, 5.22422997e-05, -0.000245738775, 1)) | |
1641 | mesh("SpecialMesh",AM4,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5)) | |
1642 | Q1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q1",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1643 | Q1weld=weld(m,TG4,Q1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02936554, 0.58564949, 0.114022255, 0.682914674, -0.707203865, 0.183003649, 0.683140576, 0.707009733, 0.182910576, -0.258740425, 0.000104899518, 0.965946913)) | |
1644 | mesh("SpecialMesh",Q1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1645 | Q10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q10",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1646 | Q10weld=weld(m,TG4,Q10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.91278076e-05, -0.524228096, -0.00012588501, -0.000225846947, 8.19889829e-05, -1.00000644, -1.00000012, -0.000232773818, 0.000224219271, -0.000232745646, 1.00000644, 8.20420682e-05)) | |
1647 | mesh("SpecialMesh",Q10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1648 | Q11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q11",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1649 | Q11weld=weld(m,TG4,Q11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0746479034, -0.356128693, 1.32600975, -0.846081793, 0.246080905, -0.472852886, 0.0128138652, -0.877419651, -0.479552537, -0.532899082, -0.411799699, 0.739215553)) | |
1650 | mesh("SpecialMesh",Q11,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1651 | Q12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q12",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1652 | Q12weld=weld(m,TG4,Q12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.977277756, -0.0517272949, 0.351173401, -0.542923808, -0.399282485, 0.73878783, 0.839781821, -0.257620722, 0.477910042, -0.000494024833, 0.87988919, 0.47517857)) | |
1653 | mesh("SpecialMesh",Q12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1654 | Q13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q13",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1655 | Q13weld=weld(m,TG4,Q13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.708095074, 0.00480651855, -0.0214424133, 0.537001133, -0.0329830386, -0.842936516, -0.016877139, -0.999455392, 0.0283556767, -0.843412697, -0.0010006763, -0.53726542)) | |
1656 | mesh("SpecialMesh",Q13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1657 | Q14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q14",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1658 | Q14weld=weld(m,TG4,Q14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110631943, -1.37159348, 0.569797516, -0.258814424, 0.000158959068, -0.965927124, -0.683109343, 0.706977546, 0.183151439, 0.682917833, 0.707235932, -0.182867393)) | |
1659 | mesh("SpecialMesh",Q14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1660 | Q15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q15",Vector3.new(0.238282621, 0.238282651, 0.238282651)) | |
1661 | Q15weld=weld(m,TG4,Q15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114351273, -1.38692474, 0.585363388, 0.258614838, 0.000151800923, -0.965980589, -0.68317169, 0.707010865, -0.182789415, 0.682931006, 0.707202673, 0.182947218)) | |
1662 | mesh("SpecialMesh",Q15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1663 | Q16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q16",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1664 | Q16weld=weld(m,TG4,Q16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02927017, 0.585828781, -0.1140728, 0.682736814, -0.707362711, -0.183043808, 0.683264673, 0.706848323, -0.183054447, 0.258872002, -9.22912732e-05, 0.965909958)) | |
1665 | mesh("SpecialMesh",Q16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002)) | |
1666 | Q2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q2",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1667 | Q2weld=weld(m,TG4,Q2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.95639038e-05, -0.166786194, 0.119113445, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135)) | |
1668 | mesh("SpecialMesh",Q2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1669 | Q3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q3",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1670 | Q3weld=weld(m,TG4,Q3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.57492065e-05, -0.166748047, -0.119185925, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135)) | |
1671 | mesh("SpecialMesh",Q3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1672 | Q4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q4",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1673 | Q4weld=weld(m,TG4,Q4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775097847, 0.109146118, -0.114173889, 0.932992756, -0.258940458, -0.249948949, 0.250075579, 0.965893269, -0.0671743006, 0.258818179, 0.000166995451, 0.965926051)) | |
1674 | mesh("SpecialMesh",Q4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1675 | Q5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q5",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1676 | Q5weld=weld(m,TG4,Q5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.91549683e-05, -0.166755676, -0.357444286, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135)) | |
1677 | mesh("SpecialMesh",Q5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1678 | Q6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q6",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1679 | Q6weld=weld(m,TG4,Q6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(9.44137573e-05, -0.166820526, 0.357393742, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135)) | |
1680 | mesh("SpecialMesh",Q6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999)) | |
1681 | Q7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q7",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1682 | Q7weld=weld(m,TG4,Q7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16683197, 5.14984131e-05, 2.57492065e-05, -0.000262918446, -0.99999994, -0.000245724805, 1, -0.000262905785, -5.22979026e-05, 5.22422997e-05, -0.000245738775, 1)) | |
1683 | mesh("SpecialMesh",Q7,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048)) | |
1684 | Q8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q8",Vector3.new(0.476565242, 0.238282651, 0.238282651)) | |
1685 | Q8weld=weld(m,TG4,Q8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.77507782, 0.109096527, 0.11418438, 0.933048368, -0.258882731, 0.249801114, 0.250101715, 0.965908766, 0.0668535084, -0.258592248, 9.8134391e-05, 0.965986609)) | |
1686 | mesh("SpecialMesh",Q8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1)) | |
1687 | Q9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q9",Vector3.new(0.953130484, 0.231713057, 0.238282651)) | |
1688 | Q9weld=weld(m,TG4,Q9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000154495239, -0.524244308, -0.000152587891, -1, -2.11830047e-05, -0.000211575112, -0.000211558785, -0.000157893635, 1, -2.12165178e-05, 0.99999994, 0.00015788991)) | |
1689 | mesh("SpecialMesh",Q9,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1)) | |
1690 | ||
1691 | ||
1692 | ||
1693 | ||
1694 | ||
1695 | MN=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","Handle",Vector3.new(1.09732866, 2.19465828, 1.09732854)) | |
1696 | MNweld=weld(m,char["Torso"],MN,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0323486328, -0.0509860516, -0.00120401382, -0.00500982394, 0.00520668458, 0.999973893, -0.00739898486, 0.999958873, -0.00524367485, -0.999960065, -0.00742506143, -0.0049710935)) | |
1697 | TR7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR7",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1698 | TR7weld=weld(m,MN,TR7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393)) | |
1699 | mesh("SpecialMesh",TR7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997)) | |
1700 | MD9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD9",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1701 | MD9weld=weld(m,MN,MD9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.741846681, 0.199262142, 1.00000405, -6.92205504e-06, 0.000154254027, 4.65649646e-05, 0.965939224, -0.25876984, -0.000147186685, 0.258768767, 0.965943158)) | |
1702 | mesh("SpecialMesh",MD9,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998)) | |
1703 | MD1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD1",Vector3.new(0.237408489, 0.259352177, 0.518704116)) | |
1704 | MD1weld=weld(m,MN,MD1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.402763367, -0.974855185, 0.682875633, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079)) | |
1705 | mesh("SpecialMesh",MD1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1706 | MD10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD10",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1707 | MD10weld=weld(m,MN,MD10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1708 | mesh("SpecialMesh",MD10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1709 | MD11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD11",Vector3.new(0.266768694, 1.09732914, 0.658397138)) | |
1710 | MD11weld=weld(m,MN,MD11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.493839264, -0.274354219, 4.24385071e-05, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1711 | mesh("SpecialMesh",MD11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999)) | |
1712 | MD12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD12",Vector3.new(0.266768694, 1.09732914, 0.658397138)) | |
1713 | MD12weld=weld(m,MN,MD12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.493812561, -0.274300575, -0.000376224518, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1714 | mesh("SpecialMesh",MD12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999)) | |
1715 | MD13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD13",Vector3.new(1.09732866, 0.822996795, 1.09732854)) | |
1716 | MD13weld=weld(m,MN,MD13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.68582201, 0.000464439392, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1717 | mesh("SpecialMesh",MD13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1718 | MD14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD14",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1719 | MD14weld=weld(m,MN,MD14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.603547096, 0.000416755676, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1720 | mesh("SpecialMesh",MD14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995)) | |
1721 | MD15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD15",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1722 | MD15weld=weld(m,MN,MD15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.62939453e-05, 0.137180567, -4.529953e-05, -1.0000037, -0.000862163957, 0.000179466791, -0.000862103421, 0.999999523, 0.000520790287, -0.000179945491, 0.000520619913, -1.00000381)) | |
1723 | mesh("SpecialMesh",MD15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1724 | MD16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD16",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1725 | MD16weld=weld(m,MN,MD16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.86645508e-05, 0.932742357, 0.000658988953, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1726 | mesh("SpecialMesh",MD16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995)) | |
1727 | MD19=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD19",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1728 | MD19weld=weld(m,MN,MD19,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393)) | |
1729 | mesh("SpecialMesh",MD19,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998)) | |
1730 | MD18=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD18",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1731 | MD18weld=weld(m,MN,MD18,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1732 | mesh("SpecialMesh",MD18,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998)) | |
1733 | MD2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD2",Vector3.new(0.2574085, 0.259352177, 0.518704116)) | |
1734 | MD2weld=weld(m,MN,MD2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.392555237, -0.573539257, 1.09872949, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516)) | |
1735 | mesh("SpecialMesh",MD2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1736 | MD3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD3",Vector3.new(0.247408509, 0.259352177, 0.518704116)) | |
1737 | MD3weld=weld(m,MN,MD3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.397964478, -0.817667723, 0.487944126, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668)) | |
1738 | mesh("SpecialMesh",MD3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1739 | MD4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD4",Vector3.new(0.247408509, 0.259352177, 0.518704116)) | |
1740 | MD4weld=weld(m,MN,MD4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.422103882, -0.82026124, 0.507567406, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668)) | |
1741 | mesh("SpecialMesh",MD4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1742 | MD5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD5",Vector3.new(0.2574085, 0.259352177, 0.518704116)) | |
1743 | MD5weld=weld(m,MN,MD5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.427509308, -0.557831764, 1.11046171, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516)) | |
1744 | mesh("SpecialMesh",MD5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1745 | MD6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD6",Vector3.new(0.237408489, 0.259352177, 0.518704116)) | |
1746 | MD6weld=weld(m,MN,MD6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417263031, -0.972257376, 0.702233315, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079)) | |
1747 | mesh("SpecialMesh",MD6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999)) | |
1748 | MD7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD7",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1749 | MD7weld=weld(m,MN,MD7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393)) | |
1750 | mesh("SpecialMesh",MD7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999)) | |
1751 | MD8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD8",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1752 | MD8weld=weld(m,MN,MD8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1753 | mesh("SpecialMesh",MD8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998)) | |
1754 | TR1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR1",Vector3.new(0.266768694, 0.54866457, 0.548664272)) | |
1755 | TR1weld=weld(m,MN,TR1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548826218, 0.30154109, 4.57763672e-05, -0.000205519143, -0.0001726388, -1, -4.31765802e-05, 1, -0.00017263052, 1, 4.314119e-05, -0.000205526594)) | |
1756 | mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048)) | |
1757 | TR2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1758 | TR2weld=weld(m,MN,TR2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, 0.741921067, 0.198978901, 1.00000405, -2.92747281e-05, -1.7457176e-05, 2.37242784e-05, 0.965939343, -0.258769363, 2.44602561e-05, 0.25876832, 0.965943277)) | |
1759 | mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997)) | |
1760 | TR3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1761 | TR3weld=weld(m,MN,TR3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.603546381, 0.000186920166, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775)) | |
1762 | mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994)) | |
1763 | TR4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1764 | TR4weld=weld(m,MN,TR4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000106811523, 0.93274045, 0.000304222107, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775)) | |
1765 | mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994)) | |
1766 | TR5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
1767 | TR5weld=weld(m,MN,TR5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1768 | mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997)) | |
1769 | TR6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
1770 | TR6weld=weld(m,MN,TR6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
1771 | mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997)) | |
1772 | MD21=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272)) | |
1773 | MD21weld=weld(m,MN,MD21,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548921585, 0.301375628, 0.000118255615, -0.000262488145, -9.39509191e-05, -1.00000393, -0.000154611655, 1, -9.38984886e-05, 1.00000393, 0.000154557638, -0.000262471847)) | |
1774 | mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036)) | |
1775 | MN=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","Handle",Vector3.new(1.03740847, 2.07481742, 1.03740823)) | |
1776 | ||
1777 | ||
1778 | --[[TG1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","Handle",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
1779 | TG1weld=weld(m,char["HumanoidRootPart"],TG1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.042350769, 2.25753069, -2.74072218, -0.0144443018, -0.00148237997, 0.999894559, 0.138804898, -0.99031961, 0.000536966661, 0.990214407, 0.138798028, 0.0145102367)) | |
1780 | mesh("SpecialMesh",TG1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))]] | |
1781 | ||
1782 | ||
1783 | local edit = function(name,mat,col) | |
1784 | name.Material = mat | |
1785 | name.BrickColor = BrickColor.new(col) | |
1786 | end | |
1787 | ||
1788 | local dark = function() | |
1789 | edit(TR1,"Neon","Deep orange") | |
1790 | edit(TR2,"Neon","Deep orange") | |
1791 | edit(TR3,"Neon","Deep orange") | |
1792 | edit(TR4,"Neon","Deep orange") | |
1793 | edit(TR5,"Neon","Deep orange") | |
1794 | edit(TR6,"Neon","Deep orange") | |
1795 | edit(TR7,"Neon","Deep orange") | |
1796 | edit(MN,"Neon","Deep orange") | |
1797 | -- | |
1798 | ||
1799 | ||
1800 | end | |
1801 | local light = function() | |
1802 | edit(TR1,"Neon","Cyan") | |
1803 | edit(TR2,"Neon","Cyan") | |
1804 | edit(TR3,"Neon","Cyan") | |
1805 | edit(TR4,"Neon","Cyan") | |
1806 | edit(TR5,"Neon","Cyan") | |
1807 | edit(TR6,"Neon","Cyan") | |
1808 | edit(TR7,"Neon","Cyan") | |
1809 | edit(MN,"Neon","Cyan") | |
1810 | -- | |
1811 | ||
1812 | end | |
1813 | ||
1814 | ||
1815 | dark() | |
1816 | ||
1817 | --Messy | |
1818 | ||
1819 | ---------------------------------------------------- | |
1820 | function Vanish() | |
1821 | for i = 1, 10 do wait() | |
1822 | for i,v in pairs(char.Genkadda:GetChildren()) do | |
1823 | if v:IsA("Part") or v:IsA("WedgePart") then | |
1824 | if v.Name ~= "HitBox" or v.Name ~= "Thingy" then | |
1825 | v.Transparency = v.Transparency + 0.1 | |
1826 | end | |
1827 | end | |
1828 | end | |
1829 | end | |
1830 | end | |
1831 | ---------------------------------------------------- | |
1832 | function Appear() | |
1833 | for i = 1, 10 do wait() | |
1834 | for i,v in pairs(char.Genkadda:GetChildren()) do | |
1835 | if v:IsA("Part") or v:IsA("WedgePart") then | |
1836 | if v.Name ~= "HitBox" or v.Name ~= "Thingy" then | |
1837 | v.Transparency = v.Transparency - 0.1 | |
1838 | end | |
1839 | end | |
1840 | end | |
1841 | end | |
1842 | end | |
1843 | ---------------------------------------------------- | |
1844 | local player = game.Players.LocalPlayer | |
1845 | local pchar = player.Character | |
1846 | local mouse = player:GetMouse() | |
1847 | local cam = workspace.CurrentCamera | |
1848 | ||
1849 | local rad = math.rad | |
1850 | ||
1851 | local keysDown = {} | |
1852 | local flySpeed = 0 | |
1853 | local MAX_FLY_SPEED = 150 | |
1854 | ||
1855 | local canFly = false | |
1856 | local flyToggled = false | |
1857 | ||
1858 | local forward, side = 0, 0 | |
1859 | local lastForward, lastSide = 0, 0 | |
1860 | ||
1861 | local floatBP = Instance.new("BodyPosition") | |
1862 | floatBP.maxForce = Vector3.new(0, math.huge, 0) | |
1863 | local flyBV = Instance.new("BodyVelocity") | |
1864 | flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9) | |
1865 | local turnBG = Instance.new("BodyGyro") | |
1866 | turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge) | |
1867 | ||
1868 | mouse.KeyDown:connect(function(key) | |
1869 | keysDown[key] = true | |
1870 | ||
1871 | if key == "f" then | |
1872 | flyToggled = not flyToggled | |
1873 | ||
1874 | if not flyToggled then | |
1875 | stanceToggle = "Normal" | |
1876 | floatBP.Parent = nil | |
1877 | flyBV.Parent = nil | |
1878 | turnBG.Parent = nil | |
1879 | root.Velocity = Vector3.new() | |
1880 | pchar.Humanoid.PlatformStand = false | |
1881 | end | |
1882 | end | |
1883 | ||
1884 | end) | |
1885 | mouse.KeyUp:connect(function(key) | |
1886 | keysDown[key] = nil | |
1887 | end) | |
1888 | ||
1889 | local function updateFly() | |
1890 | ||
1891 | if not flyToggled then return end | |
1892 | ||
1893 | lastForward = forward | |
1894 | lastSide = side | |
1895 | ||
1896 | forward = 0 | |
1897 | side = 0 | |
1898 | ||
1899 | if keysDown.w then | |
1900 | forward = forward + 1 | |
1901 | end | |
1902 | if keysDown.s then | |
1903 | forward = forward - 1 | |
1904 | end | |
1905 | if keysDown.a then | |
1906 | side = side - 1 | |
1907 | end | |
1908 | if keysDown.d then | |
1909 | side = side + 1 | |
1910 | end | |
1911 | ||
1912 | ||
1913 | canFly = (forward ~= 0 or side ~= 0) | |
1914 | ||
1915 | if canFly then | |
1916 | stanceToggle = "Floating" | |
1917 | turnBG.Parent = root | |
1918 | floatBP.Parent = nil | |
1919 | flyBV.Parent = root | |
1920 | ||
1921 | flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED) | |
1922 | if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end | |
1923 | else | |
1924 | floatBP.position = root.Position | |
1925 | floatBP.Parent = root | |
1926 | ||
1927 | flySpeed = flySpeed - 1 | |
1928 | if flySpeed < 0 then flySpeed = 0 end | |
1929 | end | |
1930 | ||
1931 | local camCF = cam.CoordinateFrame | |
1932 | local in_forward = canFly and forward or lastForward | |
1933 | local in_side = canFly and side or lastSide | |
1934 | ||
1935 | flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side, | |
1936 | in_forward * 0.2, 0).p) - camCF.p) * flySpeed | |
1937 | ||
1938 | turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0, | |
1939 | 0) | |
1940 | end | |
1941 | ||
1942 | game:service'RunService'.RenderStepped:connect(function() | |
1943 | if flyToggled then | |
1944 | pchar.Humanoid.PlatformStand = true | |
1945 | end | |
1946 | updateFly() | |
1947 | end) | |
1948 | ---------------------------------------------------- | |
1949 | p13.Touched:connect(function(ht) | |
1950 | hit = ht.Parent | |
1951 | if ht and hit:IsA("Model") then | |
1952 | if hit:FindFirstChild("Humanoid") then | |
1953 | if hit.Name ~= p.Name then | |
1954 | if Debounces.Slashing == true and Debounces.Slashed == false then | |
1955 | Debounces.Slashed = true | |
1956 | hit:FindFirstChild("Humanoid"):TakeDamage(math.random(200000000,250000000)) | |
1957 | wait(.3) | |
1958 | Debounces.Slashed = false | |
1959 | end | |
1960 | end | |
1961 | end | |
1962 | elseif ht and hit:IsA("Hat") then | |
1963 | if hit.Parent.Name ~= p.Name then | |
1964 | if hit.Parent:FindFirstChild("Humanoid") then | |
1965 | if Debounces.Slashing == true and Debounces.Slashed == false then | |
1966 | Debounces.Slashed = true | |
1967 | hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(200000000,250000000)) | |
1968 | wait(.3) | |
1969 | Debounces.Slashed = false | |
1970 | end | |
1971 | end | |
1972 | end | |
1973 | end | |
1974 | end) | |
1975 | ---------------------------------------------------- | |
1976 | local ptz = {0.7, 0.8, 0.9, 1} | |
1977 | ptz2 = {1.5, 1.6, 1.7, 1.8, 1.9, 2} | |
1978 | idz = {"161006212", "161006195"} | |
1979 | mouse.KeyDown:connect(function(key) | |
1980 | if key == "q" then | |
1981 | if Debounces.CanAttack == true then | |
1982 | Debounces.CanAttack = false | |
1983 | Debounces.NoIdl = true | |
1984 | Debounces.on = true | |
1985 | ||
1986 | if holy == true then | |
1987 | for i = 1, 8 do | |
1988 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad (60),math.rad(70),math.rad(70)), 0.2) | |
1989 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0) *CFrame.Angles(math.rad(-20),math.rad(0),math.rad (-40)), 0.2) | |
1990 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50), math.rad(0)), 0.2) | |
1991 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(-.4, -1, 0) * CFrame.Angles(math.rad(0), math.rad(70), math.rad(0)), 0.2) | |
1992 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.2) | |
1993 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.2) | |
1994 | if Debounces.on == false then break end | |
1995 | rs:wait(2) | |
1996 | end | |
1997 | else | |
1998 | for i = 1, 20 do | |
1999 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad (60),math.rad(70),math.rad(70)), 0.2) | |
2000 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0) *CFrame.Angles(math.rad(-20),math.rad(0),math.rad (-40)), 0.2) | |
2001 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50), math.rad(0)), 0.2) | |
2002 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(-.4, -1, 0) * CFrame.Angles(math.rad(0), math.rad(70), math.rad(0)), 0.2) | |
2003 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.2) | |
2004 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.2) | |
2005 | if Debounces.on == false then break end | |
2006 | rs:wait(2) | |
2007 | end | |
2008 | end | |
2009 | ||
2010 | z = Instance.new("Sound", hed) | |
2011 | z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)] | |
2012 | z.Pitch = ptz[math.random(1,#ptz)] | |
2013 | z.Volume = 1 | |
2014 | wait(.01) | |
2015 | z:Play() | |
2016 | ||
2017 | if holy == true then | |
2018 | --so("http://roblox.com/asset/?id=231917788",hed,1,1.7) | |
2019 | so("http://roblox.com/asset/?id=200633077",hed,1,ptz2[math.random(1,#ptz2)]) | |
2020 | else | |
2021 | so("http://roblox.com/asset/?id=200633029",hed,1,ptz2[math.random(1,#ptz2)]) | |
2022 | end | |
2023 | ||
2024 | Debounces.Slashing = true | |
2025 | ||
2026 | if holy == true then | |
2027 | ||
2028 | for i = 1, 5 do | |
2029 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.65, 0) * CFrame.Angles(math.rad(-40),math.rad(-20),math.rad(40)), 0.3) | |
2030 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2, 0.65, -.3) * CFrame.Angles(math.rad(65),math.rad(-20),math.rad(30)), 0.3) | |
2031 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-9),math.rad(35), math.rad(0)), 0.3) | |
2032 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 1) * CFrame.Angles(math.rad(0), math.rad(-65), math.rad(0)), 0.3) | |
2033 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-10)), 0.3) | |
2034 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(10)), 0.3) | |
2035 | if Debounces.on == false then break end | |
2036 | rs:wait(2) | |
2037 | end | |
2038 | ||
2039 | else | |
2040 | ||
2041 | for i = 1, 20 do | |
2042 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.65, 0) * CFrame.Angles(math.rad(-40),math.rad(-20),math.rad(40)), 0.3) | |
2043 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2, 0.65, -.3) * CFrame.Angles(math.rad(65),math.rad(-20),math.rad(30)), 0.3) | |
2044 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-9),math.rad(35), math.rad(0)), 0.3) | |
2045 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 1) * CFrame.Angles(math.rad(0), math.rad(-65), math.rad(0)), 0.3) | |
2046 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-10)), 0.3) | |
2047 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(10)), 0.3) | |
2048 | if Debounces.on == false then break end | |
2049 | rs:wait(2) | |
2050 | end | |
2051 | ||
2052 | end | |
2053 | z1 = Instance.new("Sound", hed) | |
2054 | z1.SoundId = "rbxassetid://"..idz[math.random(1,#idz)] | |
2055 | z1.Pitch = ptz[math.random(1,#ptz)] | |
2056 | z1.Volume = 1 | |
2057 | wait(.01) | |
2058 | z1:Play() | |
2059 | ||
2060 | if holy == true then | |
2061 | --so("http://roblox.com/asset/?id=231917788",hed,1,1.7) | |
2062 | so("http://roblox.com/asset/?id=200633077",hed,1,ptz2[math.random(1,#ptz2)]) | |
2063 | else | |
2064 | so("http://roblox.com/asset/?id=200633029",hed,1,ptz2[math.random(1,#ptz2)]) | |
2065 | end | |
2066 | ||
2067 | ||
2068 | ||
2069 | ||
2070 | Debounces.Slashing = true | |
2071 | for i = 1, 26 do | |
2072 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad (90),math.rad(-40),math.rad(80)), 0.35) | |
2073 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(0),math.rad (- 70)), 0.35) | |
2074 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-90), math.rad(0)), 0.35) | |
2075 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -1) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0)), 0.35) | |
2076 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.35) | |
2077 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.35) | |
2078 | cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles (math.rad(0), math.rad(-30), math.rad(0)), 0.35) | |
2079 | if Debounces.on == false then break end | |
2080 | rs:wait(2) | |
2081 | end | |
2082 | ||
2083 | Debounces.Slashing = false | |
2084 | z:Destroy() | |
2085 | z1:Destroy() | |
2086 | cor.Weld.C1 = CFrame.Angles(0,0,0) | |
2087 | if Debounces.CanAttack == false then | |
2088 | Debounces.CanAttack = true | |
2089 | Debounces.NoIdl = false | |
2090 | Debounces.on = false | |
2091 | end | |
2092 | end | |
2093 | end | |
2094 | end) | |
2095 | ------------------------------- | |
2096 | pts = {4, 4.2, 4.4, 4.6, 4.8, 5, 5.2, 5.4} | |
2097 | mouse.KeyDown:connect(function(key) | |
2098 | if key == "e" then | |
2099 | if Debounces.CanAttack == true then | |
2100 | Debounces.CanAttack = false | |
2101 | Debounces.NoIdl = true | |
2102 | Debounces.on = true | |
2103 | Debounces.ks = true | |
2104 | larm.Touched:connect(function(ht) | |
2105 | hit = ht.Parent | |
2106 | if ht and hit:IsA("Model") then | |
2107 | if hit:FindFirstChild("Humanoid") then | |
2108 | if hit.Name ~= p.Name then | |
2109 | if Debounces.Slapping == true and Debounces.Slapped == false then | |
2110 | Debounces.Slapped = true | |
2111 | if Debounces.ks==true then | |
2112 | z = Instance.new("Sound",hed) | |
2113 | z.SoundId = "rbxassetid://169380525" | |
2114 | z.Volume = 1 | |
2115 | z:Play() | |
2116 | z1 = Instance.new("Sound",char) | |
2117 | z1.SoundId = "rbxassetid://261010715" | |
2118 | z1.Pitch = pts[math.random(1,#pts)] | |
2119 | z1.Volume = 1 | |
2120 | z2 = Instance.new("Sound",char) | |
2121 | z2.SoundId = "rbxassetid://261010715" | |
2122 | z2.Pitch = z1.Pitch | |
2123 | z2.Volume = 1 | |
2124 | z3 = Instance.new("Sound",char) | |
2125 | z3.SoundId = "rbxassetid://261010715" | |
2126 | z3.Pitch = z1.Pitch | |
2127 | z3.Volume = 1 | |
2128 | z1:Play() | |
2129 | z2:Play() | |
2130 | z3:Play() | |
2131 | Debounces.ks=false | |
2132 | end | |
2133 | hit:FindFirstChild("Humanoid"):TakeDamage(10) | |
2134 | hit:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 90 | |
2135 | wait(.5) | |
2136 | Debounces.Slapped = false | |
2137 | z:Destroy() | |
2138 | z1:Destroy() | |
2139 | z2:Destroy() | |
2140 | z3:Destroy() | |
2141 | end | |
2142 | end | |
2143 | end | |
2144 | elseif ht and hit:IsA("Hat") then | |
2145 | if hit.Parent.Name ~= p.Name then | |
2146 | if hit.Parent:FindFirstChild("Humanoid") then | |
2147 | if Debounces.Slapping == true and Debounces.Slapped == false then | |
2148 | Debounces.Slapped = true | |
2149 | if Debounces.ks==true then | |
2150 | z = Instance.new("Sound",hed) | |
2151 | z.SoundId = "rbxassetid://169380525" | |
2152 | z.Volume = 1 | |
2153 | z:Play() | |
2154 | z1 = Instance.new("Sound",char) | |
2155 | z1.SoundId = "rbxassetid://261010715" | |
2156 | z1.Pitch = pts[math.random(1,#pts)] | |
2157 | z1.Volume = 1 | |
2158 | z2 = Instance.new("Sound",char) | |
2159 | z2.SoundId = "rbxassetid://261010715" | |
2160 | z2.Pitch = z1.Pitch | |
2161 | z2.Volume = 1 | |
2162 | z3 = Instance.new("Sound",char) | |
2163 | z3.SoundId = "rbxassetid://261010715" | |
2164 | z3.Pitch = z1.Pitch | |
2165 | z3.Volume = 1 | |
2166 | z1:Play() | |
2167 | z2:Play() | |
2168 | z3:Play() | |
2169 | Debounces.ks=false | |
2170 | end | |
2171 | hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10) | |
2172 | wait(.5) | |
2173 | Debounces.Slapped = false | |
2174 | z:Destroy() | |
2175 | z1:Destroy() | |
2176 | z2:Destroy() | |
2177 | z3:Destroy() | |
2178 | end | |
2179 | end | |
2180 | end | |
2181 | end | |
2182 | end) | |
2183 | for i = 1, 14 do | |
2184 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3, 0.5, -.3) * CFrame.Angles(math.rad(50), 0, math.rad(40)), 0.5) | |
2185 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), 0, math.rad(40)), 0.5) | |
2186 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5) | |
2187 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0)), 0.5) | |
2188 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.5) | |
2189 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.5) | |
2190 | if Debounces.on==false then break end | |
2191 | rs:wait(2) | |
2192 | end | |
2193 | Debounces.Slapping = true | |
2194 | for i = 1, 20 do | |
2195 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3, 0.7, .3) * CFrame.Angles(math.rad(50), 0, math.rad(-110)), 0.6) | |
2196 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), 0, math.rad(40)), 0.6) | |
2197 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-70), math.rad(0)), 0.6) | |
2198 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(0), math.rad(70), math.rad(0)), 0.6) | |
2199 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6) | |
2200 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6) | |
2201 | if Debounces.on==false then break end | |
2202 | rs:wait(2) | |
2203 | end | |
2204 | Debounces.Slapping = false | |
2205 | if Debounces.CanAttack == false then | |
2206 | Debounces.CanAttack = true | |
2207 | Debounces.NoIdl = false | |
2208 | Debounces.on = false | |
2209 | end | |
2210 | end | |
2211 | end | |
2212 | end) | |
2213 | ------------------------------- | |
2214 | ptz2 = {1.5, 1.6, 1.7, 1.8, 1.9, 2} | |
2215 | mouse.KeyDown:connect(function(key) | |
2216 | if key == "r" then | |
2217 | if Debounces.CanAttack == true then | |
2218 | Debounces.CanAttack = false | |
2219 | Debounces.NoIdl = true | |
2220 | Debounces.on = true | |
2221 | if holy ~= true then | |
2222 | for i = 1, 20 do | |
2223 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(130), 0, math.rad(40)), 0.3) | |
2224 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(130), 0, math.rad(-40)), 0.3) | |
2225 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), 0, 0), 0.3) | |
2226 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(50), 0, 0), 0.3) | |
2227 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, 0), 0.3) | |
2228 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.2, -.5) * CFrame.Angles(math.rad(-10), 0, 0), 0.3) | |
2229 | cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, -.2, 0) * CFrame.Angles (math.rad(40), math.rad(0), math.rad(0)), 0.35) | |
2230 | if Debounces.on==false then break end | |
2231 | rs:wait(2) | |
2232 | end | |
2233 | else | |
2234 | for i = 1, 10 do | |
2235 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(130), 0, math.rad(40)), 0.3) | |
2236 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(130), 0, math.rad(-40)), 0.3) | |
2237 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), 0, 0), 0.3) | |
2238 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(50), 0, 0), 0.3) | |
2239 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, 0), 0.3) | |
2240 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.2, -.5) * CFrame.Angles(math.rad(-10), 0, 0), 0.3) | |
2241 | cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, -.2, 0) * CFrame.Angles (math.rad(40), math.rad(0), math.rad(0)), 0.35) | |
2242 | if Debounces.on==false then break end | |
2243 | rs:wait(2) | |
2244 | end | |
2245 | end | |
2246 | Debounces.Slashing = true | |
2247 | ||
2248 | ||
2249 | ||
2250 | z = Instance.new("Sound",hed) | |
2251 | z.SoundId = "rbxassetid://206083107" | |
2252 | z.Pitch = .75 | |
2253 | z.Volume = .65 | |
2254 | wait(0.1) | |
2255 | z:Play() | |
2256 | z1 = Instance.new("Sound", hed) | |
2257 | z1.SoundId = "rbxassetid://"..idz[math.random(1,#idz)] | |
2258 | z1.Pitch = ptz[math.random(1,#ptz)] | |
2259 | z1.Volume = 1 | |
2260 | wait(.01) | |
2261 | z1:Play() | |
2262 | ||
2263 | if holy == true then | |
2264 | so("http://roblox.com/asset/?id=200633077",hed,1,ptz2[math.random(1,#ptz2)]) | |
2265 | else | |
2266 | so("http://roblox.com/asset/?id=200633029",hed,1,ptz2[math.random(1,#ptz2)]) | |
2267 | end | |
2268 | ||
2269 | if holy ~= true then | |
2270 | for i = 1, 20 do | |
2271 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(50), 0, math.rad(40)), 0.3) | |
2272 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(50), 0, math.rad(-40)), 0.3) | |
2273 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2, 0) * CFrame.Angles(math.rad(-30), 0, 0), 0.3) | |
2274 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.3) | |
2275 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -.7) * CFrame.Angles(math.rad(20), 0, 0), 0.3) | |
2276 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-40), 0, 0), 0.3) | |
2277 | cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, -.2, 0) * CFrame.Angles (math.rad(40), math.rad(-20), math.rad(20)), 0.35) | |
2278 | if Debounces.on==false then break end | |
2279 | rs:wait(2) | |
2280 | end | |
2281 | else | |
2282 | for i = 1, 10 do | |
2283 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(50), 0, math.rad(40)), 0.3) | |
2284 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(50), 0, math.rad(-40)), 0.3) | |
2285 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2, 0) * CFrame.Angles(math.rad(-30), 0, 0), 0.3) | |
2286 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.3) | |
2287 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -.7) * CFrame.Angles(math.rad(20), 0, 0), 0.3) | |
2288 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-40), 0, 0), 0.3) | |
2289 | cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, -.2, 0) * CFrame.Angles (math.rad(40), math.rad(-20), math.rad(20)), 0.35) | |
2290 | if Debounces.on==false then break end | |
2291 | rs:wait(2) | |
2292 | end | |
2293 | end | |
2294 | Debounces.Slashing = false | |
2295 | cor.Weld.C1 = CFrame.Angles(0,0,0) | |
2296 | if Debounces.CanAttack == false then | |
2297 | Debounces.CanAttack = true | |
2298 | Debounces.NoIdl = false | |
2299 | Debounces.on = false | |
2300 | end | |
2301 | end | |
2302 | end | |
2303 | end) | |
2304 | ------------------------------- | |
2305 | mouse.KeyDown:connect(function(key) | |
2306 | if key == "t" then | |
2307 | if Debounces.CanAttack == true then | |
2308 | Debounces.CanAttack = false | |
2309 | Debounces.on = true | |
2310 | Debounces.NoIdl = true | |
2311 | for i = 1,20 do | |
2312 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(0)), 0.2) | |
2313 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(0)), 0.2) | |
2314 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(20),math.rad(0),0), 0.2) | |
2315 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, .4) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.2) | |
2316 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(-10)), 0.2) | |
2317 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(10)), 0.2) | |
2318 | if Debounces.on==false then break end | |
2319 | rs:wait(2) | |
2320 | end | |
2321 | for i = 1,20 do | |
2322 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(0)), 0.2) | |
2323 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(0)), 0.2) | |
2324 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-20),math.rad(0),0), 0.2) | |
2325 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -.4) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2) | |
2326 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-10)), 0.2) | |
2327 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(10)), 0.2) | |
2328 | if Debounces.on==false then break end | |
2329 | rs:wait(2) | |
2330 | end | |
2331 | if Debounces.CanAttack == false then | |
2332 | Debounces.CanAttack = true | |
2333 | Debounces.on = false | |
2334 | Debounces.NoIdl = false | |
2335 | end | |
2336 | end | |
2337 | end | |
2338 | end) | |
2339 | ------------------------------- | |
2340 | local ptz3 = {0.5, 0.6, 0.7} | |
2341 | mouse.KeyDown:connect(function(key) | |
2342 | if key == "g" then | |
2343 | if Debounces.CanAttack == true then | |
2344 | Debounces.CanAttack = false | |
2345 | Debounces.NoIdl = true | |
2346 | Debounces.on = true | |
2347 | Debounces.Slashing = true | |
2348 | ||
2349 | z = Instance.new("Sound", hed) | |
2350 | z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)] | |
2351 | z.Pitch = ptz[math.random(1,#ptz)] | |
2352 | z.Volume = 1 | |
2353 | ||
2354 | ||
2355 | if holy == true then | |
2356 | eColors = {"Cyan"} | |
2357 | ||
2358 | ||
2359 | for i,v in pairs(char.m:GetChildren()) do | |
2360 | if v:IsA("Part") or v:IsA("WedgePart") then | |
2361 | if v.Name ~= "HitBox" or v.Name ~= "Thingy" then | |
2362 | v.BrickColor = BrickColor.new("Cyan") | |
2363 | v.Material = "Neon" | |
2364 | end | |
2365 | end | |
2366 | end | |
2367 | ||
2368 | for i,v in pairs(char.m:GetChildren()) do | |
2369 | v.BrickColor = BrickColor.new("Cyan") | |
2370 | v.Material = "Neon" | |
2371 | end | |
2372 | ||
2373 | ||
2374 | for i,v in pairs(char.m:GetChildren()) do | |
2375 | if v:IsA("Part") or v:IsA("WedgePart") then | |
2376 | if v.Name ~= "HitBox" or v.Name ~= "Thingy" then | |
2377 | v.BrickColor = BrickColor.new("Cyan") | |
2378 | v.Material = "Neon" | |
2379 | end | |
2380 | end | |
2381 | end | |
2382 | ||
2383 | for i,v in pairs(char.m:GetChildren()) do | |
2384 | v.BrickColor = BrickColor.new("Cyan") | |
2385 | v.Material = "Neon" | |
2386 | end | |
2387 | ||
2388 | ||
2389 | ||
2390 | char.Humanoid.WalkSpeed = 50 | |
2391 | ||
2392 | GroundWave() | |
2393 | so("http://roblox.com/asset/?id=200633077",hed,1,ptz3[math.random(1,#ptz3)]) | |
2394 | so("http://www.roblox.com/asset/?id=241816017",hed,1,0.5) | |
2395 | so("http://www.roblox.com/asset/?id=241816017",hed,1,1) | |
2396 | ||
2397 | ||
2398 | else | |
2399 | so("http://roblox.com/asset/?id=200633029",hed,1,0.9) | |
2400 | end | |
2401 | ||
2402 | ||
2403 | for i = 1, 8 do | |
2404 | z:play() | |
2405 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-90)), 0.8) | |
2406 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), 0, math.rad(90)), 0.8) | |
2407 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, 0, 0), 0.8) | |
2408 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(0, 0, 0), 0.8) | |
2409 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.8) | |
2410 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.8) | |
2411 | if Debounces.on==false then break end | |
2412 | rs:wait(2) | |
2413 | end | |
2414 | for i = 1, 2880, 48 do | |
2415 | torso.Weld.C1 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(i), math.rad(0)) | |
2416 | rs:wait(4) | |
2417 | end | |
2418 | ||
2419 | ||
2420 | ||
2421 | ||
2422 | ||
2423 | ||
2424 | ||
2425 | torso.Weld.C1 = CFrame.new(0, -1, 0) | |
2426 | Debounces.Slashing = false | |
2427 | ||
2428 | if Debounces.CanAttack == false then | |
2429 | Debounces.CanAttack = true | |
2430 | Debounces.NoIdl = false | |
2431 | Debounces.on = false | |
2432 | ||
2433 | ||
2434 | ||
2435 | ||
2436 | char.Humanoid.WalkSpeed = 10 | |
2437 | ||
2438 | ||
2439 | end | |
2440 | ||
2441 | ||
2442 | ||
2443 | end | |
2444 | ||
2445 | ||
2446 | ||
2447 | end | |
2448 | ||
2449 | ||
2450 | end) | |
2451 | ---------------------------------------------------- | |
2452 | pt = {6.6, 6.8, 7, 7.2, 7.4} | |
2453 | mouse.KeyDown:connect(function(key) | |
2454 | if key == "l" then | |
2455 | if Debounces.CanJoke == true then | |
2456 | Debounces.CanJoke = false | |
2457 | u = Instance.new("Sound",char) | |
2458 | u.SoundId = "http://www.roblox.com/asset/?id=261303790" | |
2459 | u.Pitch = pt[math.random(1,#pt)] | |
2460 | u.Volume = 1 | |
2461 | u2 = Instance.new("Sound",char) | |
2462 | u2.SoundId = "http://www.roblox.com/asset/?id=261303790" | |
2463 | u2.Pitch = u.Pitch | |
2464 | u2.Volume = 1 | |
2465 | u3 = Instance.new("Sound",char) | |
2466 | u3.SoundId = "http://www.roblox.com/asset/?id=261303790" | |
2467 | u3.Pitch = u.Pitch | |
2468 | u3.Volume = 1 | |
2469 | wait(.01) | |
2470 | u:Play() | |
2471 | u2:Play() | |
2472 | u3:Play() | |
2473 | wait(1.5) | |
2474 | u:Destroy() | |
2475 | u2:Destroy() | |
2476 | u3:Destroy() | |
2477 | if Debounces.CanJoke == false then | |
2478 | Debounces.CanJoke = true | |
2479 | end | |
2480 | end | |
2481 | end | |
2482 | end) | |
2483 | ||
2484 | ------------------------------- BEGIN GRABPUNCH | |
2485 | mouse.KeyDown:connect(function(key) | |
2486 | if key == "x" then | |
2487 | Debounces.on = true | |
2488 | Debounces.NoIdl = true | |
2489 | Debounces.ks = true | |
2490 | if Grab == false then | |
2491 | gp = nil | |
2492 | ||
2493 | if Melee == false then | |
2494 | Melee = true | |
2495 | Vanish() | |
2496 | stanceToggle = "Melee" | |
2497 | elseif Melee == true then | |
2498 | Melee = false | |
2499 | Appear() | |
2500 | stanceToggle = "Normal" | |
2501 | end | |
2502 | ||
2503 | for i = 1, 20 do | |
2504 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.2) | |
2505 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.2) | |
2506 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2) | |
2507 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2) | |
2508 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2) | |
2509 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2) | |
2510 | if Debounces.on == false then break end | |
2511 | rs:wait() | |
2512 | end | |
2513 | con1=larm.Touched:connect(function(hit) -- this is grab | |
2514 | ht = hit.Parent | |
2515 | hum1=ht:FindFirstChild('Humanoid') | |
2516 | if hum1 ~= nil then | |
2517 | if Debounces.ks==true then | |
2518 | z = Instance.new("Sound",hed) | |
2519 | z.SoundId = "rbxassetid://169380525" | |
2520 | z.Volume = 1 | |
2521 | z:Play() | |
2522 | Debounces.ks=false | |
2523 | end | |
2524 | hum1.PlatformStand=true | |
2525 | gp = ht | |
2526 | Grab = true | |
2527 | asd=weld5(root,ht:FindFirstChild("Torso"),CFrame.new(0,0,-2.4),CFrame.new(0,0,0)) | |
2528 | asd.Parent = larm | |
2529 | asd.Name = "asd" | |
2530 | asd.C0=asd.C0*CFrame.Angles(math.rad(0),math.rad(180),0) | |
2531 | --[[elseif hum1 == nil then | |
2532 | con1:disconnect() | |
2533 | wait() return]]-- | |
2534 | end | |
2535 | end) | |
2536 | for i = 1, 20 do | |
2537 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.2) | |
2538 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.2) | |
2539 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2) | |
2540 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2) | |
2541 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2) | |
2542 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2) | |
2543 | if Debounces.on == false then break end | |
2544 | rs:wait() | |
2545 | end | |
2546 | if hum1 == nil then | |
2547 | Debounces.on = false | |
2548 | Debounces.NoIdl = false | |
2549 | end | |
2550 | con1:disconnect() | |
2551 | elseif Grab == true then | |
2552 | Grab = false | |
2553 | Punch() | |
2554 | z = Instance.new("Sound",hed) | |
2555 | z.SoundId = "rbxassetid://169380525" | |
2556 | z.Pitch = ptz[math.random(1,#ptz)] | |
2557 | z.Volume = 1 | |
2558 | z:Play() | |
2559 | for i = 1, 10 do | |
2560 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7) | |
2561 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7) | |
2562 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4) | |
2563 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6) | |
2564 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
2565 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
2566 | if Debounces.on == false then break end | |
2567 | rs:wait() | |
2568 | end | |
2569 | Punch() | |
2570 | z = Instance.new("Sound",hed) | |
2571 | z.SoundId = "rbxassetid://169380525" | |
2572 | z.Pitch = ptz[math.random(1,#ptz)] | |
2573 | z.Volume = 1 | |
2574 | z:Play() | |
2575 | for i = 1, 10 do | |
2576 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6) | |
2577 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7) | |
2578 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4) | |
2579 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65) | |
2580 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
2581 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
2582 | if Debounces.on == false then break end | |
2583 | rs:wait() | |
2584 | end | |
2585 | Punch() | |
2586 | z = Instance.new("Sound",hed) | |
2587 | z.SoundId = "rbxassetid://169380525" | |
2588 | z.Pitch = ptz[math.random(1,#ptz)] | |
2589 | z.Volume = 1 | |
2590 | z:Play() | |
2591 | for i = 1, 10 do | |
2592 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7) | |
2593 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7) | |
2594 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4) | |
2595 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6) | |
2596 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
2597 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
2598 | if Debounces.on == false then break end | |
2599 | rs:wait() | |
2600 | end | |
2601 | Punch() | |
2602 | z = Instance.new("Sound",hed) | |
2603 | z.SoundId = "rbxassetid://169380525" | |
2604 | z.Pitch = ptz[math.random(1,#ptz)] | |
2605 | z.Volume = 1 | |
2606 | z:Play() | |
2607 | for i = 1, 10 do | |
2608 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6) | |
2609 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7) | |
2610 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4) | |
2611 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65) | |
2612 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
2613 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
2614 | if Debounces.on == false then break end | |
2615 | rs:wait() | |
2616 | end | |
2617 | Punch() | |
2618 | z = Instance.new("Sound",hed) | |
2619 | z.SoundId = "rbxassetid://169380525" | |
2620 | z.Pitch = ptz[math.random(1,#ptz)] | |
2621 | z.Volume = 1 | |
2622 | z:Play() | |
2623 | for i = 1, 10 do | |
2624 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7) | |
2625 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7) | |
2626 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4) | |
2627 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6) | |
2628 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
2629 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
2630 | if Debounces.on == false then break end | |
2631 | rs:wait() | |
2632 | end | |
2633 | Punch() | |
2634 | z = Instance.new("Sound",hed) | |
2635 | z.SoundId = "rbxassetid://169380525" | |
2636 | z.Pitch = ptz[math.random(1,#ptz)] | |
2637 | z.Volume = 1 | |
2638 | z:Play() | |
2639 | for i = 1, 10 do | |
2640 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6) | |
2641 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7) | |
2642 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4) | |
2643 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65) | |
2644 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
2645 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
2646 | if Debounces.on == false then break end | |
2647 | rs:wait() | |
2648 | end | |
2649 | Punch() | |
2650 | z = Instance.new("Sound",hed) | |
2651 | z.SoundId = "rbxassetid://169380525" | |
2652 | z.Pitch = ptz[math.random(1,#ptz)] | |
2653 | z.Volume = 1 | |
2654 | z:Play() | |
2655 | for i = 1, 10 do | |
2656 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7) | |
2657 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7) | |
2658 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4) | |
2659 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6) | |
2660 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
2661 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
2662 | if Debounces.on == false then break end | |
2663 | rs:wait() | |
2664 | end | |
2665 | Punch() | |
2666 | z = Instance.new("Sound",hed) | |
2667 | z.SoundId = "rbxassetid://169380525" | |
2668 | z.Pitch = ptz[math.random(1,#ptz)] | |
2669 | z.Volume = 1 | |
2670 | z:Play() | |
2671 | for i = 1, 10 do | |
2672 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6) | |
2673 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7) | |
2674 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4) | |
2675 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65) | |
2676 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
2677 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
2678 | if Debounces.on == false then break end | |
2679 | rs:wait() | |
2680 | end | |
2681 | Punch() | |
2682 | z = Instance.new("Sound",hed) | |
2683 | z.SoundId = "rbxassetid://169380525" | |
2684 | z.Pitch = ptz[math.random(1,#ptz)] | |
2685 | z.Volume = 1 | |
2686 | z:Play() | |
2687 | for i = 1, 10 do | |
2688 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7) | |
2689 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7) | |
2690 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4) | |
2691 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6) | |
2692 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
2693 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
2694 | if Debounces.on == false then break end | |
2695 | rs:wait() | |
2696 | end | |
2697 | Punch() | |
2698 | z = Instance.new("Sound",hed) | |
2699 | z.SoundId = "rbxassetid://169380525" | |
2700 | z.Pitch = ptz[math.random(1,#ptz)] | |
2701 | z.Volume = 1 | |
2702 | z:Play() | |
2703 | for i = 1, 10 do | |
2704 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6) | |
2705 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7) | |
2706 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4) | |
2707 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65) | |
2708 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
2709 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
2710 | if Debounces.on == false then break end | |
2711 | rs:wait() | |
2712 | end | |
2713 | Punch() | |
2714 | z = Instance.new("Sound",hed) | |
2715 | z.SoundId = "rbxassetid://169380525" | |
2716 | z.Pitch = ptz[math.random(1,#ptz)] | |
2717 | z.Volume = 1 | |
2718 | z:Play() | |
2719 | for i = 1, 10 do | |
2720 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7) | |
2721 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7) | |
2722 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4) | |
2723 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6) | |
2724 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
2725 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
2726 | if Debounces.on == false then break end | |
2727 | rs:wait() | |
2728 | end | |
2729 | Punch() | |
2730 | z = Instance.new("Sound",hed) | |
2731 | z.SoundId = "rbxassetid://169380525" | |
2732 | z.Pitch = ptz[math.random(1,#ptz)] | |
2733 | z.Volume = 1 | |
2734 | z:Play() | |
2735 | for i = 1, 10 do | |
2736 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6) | |
2737 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7) | |
2738 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4) | |
2739 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65) | |
2740 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
2741 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
2742 | if Debounces.on == false then break end | |
2743 | rs:wait() | |
2744 | end | |
2745 | con1:disconnect() | |
2746 | Debounces.on = false | |
2747 | Debounces.NoIdl = false | |
2748 | if gp ~= nil then | |
2749 | gp:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 140 | |
2750 | for i,v in pairs(larm:GetChildren()) do | |
2751 | if v.Name == "asd" and v:IsA("Weld") then | |
2752 | v:Remove() | |
2753 | end | |
2754 | end | |
2755 | --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso")) | |
2756 | bv.maxForce = Vector3.new(400000, 400000, 400000) | |
2757 | bv.P = 125000 | |
2758 | bv.velocity = char.Head.CFrame.lookVector * 200]]-- | |
2759 | hum1=nil | |
2760 | ht=nil | |
2761 | Debounces.on = false | |
2762 | Debounces.NoIdl = false | |
2763 | elseif ht == nil then wait() | |
2764 | Grab = false | |
2765 | Debounces.on = false | |
2766 | Debounces.NoIdl = false | |
2767 | end | |
2768 | end | |
2769 | end | |
2770 | end) | |
2771 | ||
2772 | ||
2773 | ------------------------------------------------- | |
2774 | ||
2775 | ||
2776 | ||
2777 | ||
2778 | ----------------------------------------------------Cero | |
2779 | mouse.KeyDown:connect(function(key) | |
2780 | if key == "c" then | |
2781 | if Debounces.CanAttack == true then | |
2782 | Debounces.CanAttack = false | |
2783 | Debounces.NoIdl = true | |
2784 | Debounces.on = true | |
2785 | char.Humanoid.WalkSpeed = .01 | |
2786 | Debounces.on = true | |
2787 | Vanish() | |
2788 | ||
2789 | xx = Instance.new("Sound") | |
2790 | xx.SoundId = "http://www.roblox.com/asset/?id=199145659" | |
2791 | xx.Parent = char.Head | |
2792 | xx.Looped = false | |
2793 | xx.Pitch = .88 | |
2794 | xx.Volume = 1 | |
2795 | wait(.1) | |
2796 | xx:Play() | |
2797 | ||
2798 | if holy == true then | |
2799 | so("http://roblox.com/asset/?id=231917788",hed,1,1) | |
2800 | else | |
2801 | end | |
2802 | ||
2803 | ||
2804 | if holy ~= true then | |
2805 | for i = 1, 20 do | |
2806 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(-18), 0, math.rad(-20)), 0.3) | |
2807 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(65), 0, math.rad(-40)), 0.3) | |
2808 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.3) | |
2809 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(8), 0, math.rad(10)), 0.3) | |
2810 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-10), math.rad(-70), 0), 0.6) | |
2811 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(84), 0), 0.4) | |
2812 | if Debounces.on==false then break end | |
2813 | wait() | |
2814 | end | |
2815 | wait(1) | |
2816 | else | |
2817 | for i = 1, 5 do | |
2818 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(-18), 0, math.rad(-20)), 0.3) | |
2819 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(65), 0, math.rad(-40)), 0.3) | |
2820 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.3) | |
2821 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(8), 0, math.rad(10)), 0.3) | |
2822 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-10), math.rad(-70), 0), 0.6) | |
2823 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(84), 0), 0.4) | |
2824 | if Debounces.on==false then break end | |
2825 | wait() | |
2826 | end | |
2827 | wait(1) | |
2828 | end | |
2829 | ||
2830 | x = Instance.new("Sound") | |
2831 | x.SoundId = "http://www.roblox.com/asset/?id=142070127" | |
2832 | x2 = Instance.new("Sound") | |
2833 | x2.SoundId = "http://www.roblox.com/asset/?id=183763506" | |
2834 | x.Parent = char.Head | |
2835 | x2.Parent = char.Head | |
2836 | x.Looped = false | |
2837 | x2.Looped = false | |
2838 | x.Pitch = .88 | |
2839 | x.Volume = 1 | |
2840 | x2.Pitch = .88 | |
2841 | x2.Volume = 1 | |
2842 | wait(.1) | |
2843 | x:Play() | |
2844 | x2:Play() | |
2845 | Debounces.on = false | |
2846 | Debounces.Here = false | |
2847 | ||
2848 | for i = 1, 6 do | |
2849 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(-12)), 0.4) | |
2850 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(90), 0, math.rad(101)), 0.4) | |
2851 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-6)), 0.4) | |
2852 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(6)), 0.4) | |
2853 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-8), math.rad(-84), 0), 0.4) | |
2854 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.4) | |
2855 | wait() | |
2856 | end | |
2857 | local rng = Instance.new("Part", char) | |
2858 | rng.Anchored = true | |
2859 | ||
2860 | if holy ~= true then | |
2861 | rng.BrickColor = BrickColor.new("Really black") | |
2862 | else | |
2863 | rng.BrickColor = BrickColor.new("Cyan") | |
2864 | end | |
2865 | ||
2866 | rng.CanCollide = false | |
2867 | rng.FormFactor = 3 | |
2868 | rng.Name = "Ring" | |
2869 | rng.Size = Vector3.new(1, 1, 1) | |
2870 | rng.Transparency = 0.35 | |
2871 | rng.TopSurface = 0 | |
2872 | rng.BottomSurface = 0 | |
2873 | rng.Material = "Neon" | |
2874 | local rngm = Instance.new("SpecialMesh", rng) | |
2875 | rngm.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
2876 | rngm.Scale = Vector3.new(10, 10, 1) | |
2877 | local bem = Instance.new("Part", char) | |
2878 | bem.Anchored = true | |
2879 | ||
2880 | if holy ~= true then | |
2881 | bem.BrickColor = BrickColor.new("Really black") | |
2882 | else | |
2883 | bem.BrickColor = BrickColor.new("Cyan") | |
2884 | end | |
2885 | ||
2886 | bem.Material = "Neon" | |
2887 | bem.CanCollide = false | |
2888 | bem.FormFactor = 3 | |
2889 | bem.Name = "Beam" .. shot | |
2890 | bem.Size = Vector3.new(1, 1, 1) | |
2891 | bem.Transparency = 0.35 | |
2892 | bem.TopSurface = 0 | |
2893 | bem.BottomSurface = 0 | |
2894 | local bemm = Instance.new("SpecialMesh", bem) | |
2895 | bemm.MeshType = 4 | |
2896 | bemm.Scale = Vector3.new(1, 4, 4) | |
2897 | local out = Instance.new("Part", char) | |
2898 | out.Anchored = true | |
2899 | ||
2900 | if holy ~= true then | |
2901 | out.BrickColor = BrickColor.new("Really black") | |
2902 | else | |
2903 | out.BrickColor = BrickColor.new("Cyan") | |
2904 | end | |
2905 | ||
2906 | out.Material = "Neon" | |
2907 | out.CanCollide = false | |
2908 | out.FormFactor = 3 | |
2909 | out.Name = "Out" | |
2910 | out.Size = Vector3.new(1, 1, 1) | |
2911 | out.Transparency = 0.35 | |
2912 | out.TopSurface = 0 | |
2913 | out.BottomSurface = 0 | |
2914 | local outm = Instance.new("SpecialMesh", out) | |
2915 | outm.MeshId = "http://www.roblox.com/asset/?id=1033714" | |
2916 | outm.Scale = Vector3.new(2, 2, 2) | |
2917 | local bnd = Instance.new("Part", char) | |
2918 | bnd.Anchored = true | |
2919 | ||
2920 | if holy ~= true then | |
2921 | bnd.BrickColor = BrickColor.new("Really black") | |
2922 | else | |
2923 | bnd.BrickColor = BrickColor.new("Cyan") | |
2924 | end | |
2925 | ||
2926 | bnd.Material = "Neon" | |
2927 | bnd.CanCollide = false | |
2928 | bnd.FormFactor = 3 | |
2929 | bnd.Name = "BEnd" | |
2930 | bnd.Size = Vector3.new(1, 1, 1) | |
2931 | bnd.Transparency = 0.35 | |
2932 | bnd.TopSurface = 0 | |
2933 | bnd.BottomSurface = 0 | |
2934 | local bndm = Instance.new("SpecialMesh", bnd) | |
2935 | bndm.MeshType = 3 | |
2936 | bndm.Scale = Vector3.new(4, 4, 4) | |
2937 | out.CFrame = rarm.CFrame * CFrame.new(0, -1.75, 0) | |
2938 | bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90)) | |
2939 | bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0) | |
2940 | rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0) | |
2941 | Debounces.Shewt = true | |
2942 | coroutine.wrap(function() | |
2943 | for i = 1, 20, 0.2 do | |
2944 | rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1) | |
2945 | rng.Transparency = i/20 | |
2946 | wait() | |
2947 | end | |
2948 | wait() | |
2949 | rng:Destroy() | |
2950 | end)() | |
2951 | if Debounces.Shewt == true then | |
2952 | char:WaitForChild("Beam" .. shot).Touched:connect(function(ht) --Here | |
2953 | print("Hit") | |
2954 | hit = ht.Parent | |
2955 | if hit:IsA("Model") and hit:findFirstChild("Humanoid") then | |
2956 | print("Yes") | |
2957 | if HasntTouched(hit.Name) == true and deb == false then | |
2958 | deb = true | |
2959 | coroutine.wrap(function() | |
2960 | hit:FindFirstChild("Humanoid").PlatformStand = true | |
2961 | hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 140 | |
2962 | hit:FindFirstChild("Humanoid"):TakeDamage(math.random(180000000,630000000)) | |
2963 | wait(1) | |
2964 | hit:FindFirstChild("Humanoid").PlatformStand = false | |
2965 | end)() | |
2966 | table.insert(Touche, hit.Name) | |
2967 | deb = false | |
2968 | end | |
2969 | elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then | |
2970 | print("Yes") | |
2971 | if HasntTouched(hit.Parent.Name) == true and deb == false then | |
2972 | deb = true | |
2973 | coroutine.wrap(function() | |
2974 | hit.Parent:FindFirstChild("Humanoid").PlatformStand = true | |
2975 | hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 140 | |
2976 | wait(1) | |
2977 | hit.Parent:FindFirstChild("Humanoid").PlatformStand = false | |
2978 | end)() | |
2979 | table.insert(Touche, hit.Parent.Name) | |
2980 | deb = false | |
2981 | for i, v in pairs(Touche) do | |
2982 | print(v) | |
2983 | end | |
2984 | end | |
2985 | end | |
2986 | end) | |
2987 | end | |
2988 | for i = 0, 200, 7 do | |
2989 | bem.Size = Vector3.new(i, 1, 1) | |
2990 | bem.CFrame = rarm.CFrame * CFrame.new(0, -2.5 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90)) | |
2991 | bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 0) | |
2992 | wait() | |
2993 | end | |
2994 | wait() | |
2995 | Debounces.Shewt = false | |
2996 | bem:Destroy() | |
2997 | out:Destroy() | |
2998 | bnd:Destroy() | |
2999 | char.Humanoid.WalkSpeed = 10 | |
3000 | Debounces.Ready = false | |
3001 | for i, v in pairs(Touche) do | |
3002 | table.remove(Touche, i) | |
3003 | end | |
3004 | wait() | |
3005 | table.insert(Touche, char.Name) | |
3006 | Debounces.NoIdl = false | |
3007 | if Debounces.CanAttack == false then | |
3008 | Debounces.CanAttack = true | |
3009 | cor.Weld.C1 = CFrame.Angles(0,0,0) | |
3010 | ||
3011 | ||
3012 | Debounces.on = false | |
3013 | Appear() | |
3014 | end | |
3015 | end | |
3016 | end | |
3017 | end) | |
3018 | ------------------------------- | |
3019 | ||
3020 | ----------------------------------------------------EDIT END | |
3021 | Grab = false | |
3022 | mouse.KeyDown:connect(function(key) | |
3023 | if key == "z" then | |
3024 | Debounces.on = true | |
3025 | Debounces.NoIdl = true | |
3026 | Debounces.ks = true | |
3027 | if Grab == false then | |
3028 | gp = nil | |
3029 | for i = 1, 20 do | |
3030 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2) | |
3031 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-80)), 0.2) | |
3032 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-70),0), 0.2) | |
3033 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.2) | |
3034 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2) | |
3035 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2) | |
3036 | if Debounces.on == false then break end | |
3037 | rs:wait(2) | |
3038 | end | |
3039 | con1=larm.Touched:connect(function(hit) -- this is grab | |
3040 | ht = hit.Parent | |
3041 | hum1=ht:FindFirstChild('Humanoid') | |
3042 | if hum1 ~= nil then | |
3043 | if Debounces.ks==true then | |
3044 | z = Instance.new("Sound",hed) | |
3045 | z.SoundId = "rbxassetid://169380525" | |
3046 | z.Volume = 1 | |
3047 | z:Play() | |
3048 | Debounces.ks=false | |
3049 | end | |
3050 | hum1.PlatformStand=true | |
3051 | gp = ht | |
3052 | Grab = true | |
3053 | asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-1,1.5),CFrame.new(0,0,0)) | |
3054 | asd.Parent = larm | |
3055 | asd.Name = "asd" | |
3056 | asd.C0=asd.C0*CFrame.Angles(math.rad(-90),math.rad(180),0) | |
3057 | stanceToggle = "Grabbed" | |
3058 | --[[elseif hum1 == nil then | |
3059 | con1:disconnect() | |
3060 | wait() return]]-- | |
3061 | end | |
3062 | end) | |
3063 | for i = 1, 20 do | |
3064 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2) | |
3065 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2) | |
3066 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(30),0), 0.2) | |
3067 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-30), 0), 0.2) | |
3068 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2) | |
3069 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2) | |
3070 | if Debounces.on == false then break end | |
3071 | rs:wait(2) | |
3072 | end | |
3073 | con1:disconnect() | |
3074 | Debounces.on = false | |
3075 | Debounces.NoIdl = false | |
3076 | elseif Grab == true then | |
3077 | Grab = false | |
3078 | --[[for i = 1, 16 do | |
3079 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(50),math.rad(60)), 0.3) | |
3080 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,-.5)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-60)), 0.3) | |
3081 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(70),0), 0.3) | |
3082 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3) | |
3083 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3) | |
3084 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3) | |
3085 | cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), 0), 0.3) | |
3086 | if Debounces.on == false then end | |
3087 | rs:wait() | |
3088 | end]]-- | |
3089 | for i = 1, 16 do | |
3090 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.3) | |
3091 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(140),math.rad(0),math.rad(-50)), 0.3) | |
3092 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(20),math.rad(-60),0), 0.3) | |
3093 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.3) | |
3094 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(-20)), 0.3) | |
3095 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3) | |
3096 | if Debounces.on == false then end | |
3097 | rs:wait() | |
3098 | end | |
3099 | Slam() | |
3100 | if gp ~= nil then | |
3101 | for i,v in pairs(larm:GetChildren()) do | |
3102 | if v.Name == "asd" and v:IsA("Weld") then | |
3103 | v:Remove() | |
3104 | end | |
3105 | end | |
3106 | for i = 1, 16 do | |
3107 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.3) | |
3108 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,-.4)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.3) | |
3109 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.3) | |
3110 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-60), math.rad(-30), 0), 0.3) | |
3111 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(80), math.rad(30), math.rad(-20)), 0.3) | |
3112 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(70), math.rad(-15), math.rad(20)), 0.3) | |
3113 | if Debounces.on == false then end | |
3114 | rs:wait() | |
3115 | end | |
3116 | stanceToggle = "Normal" | |
3117 | --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso")) | |
3118 | bv.maxForce = Vector3.new(400000, 400000, 400000) | |
3119 | bv.P = 125000 | |
3120 | bv.velocity = char.Head.CFrame.lookVector * 200]]-- | |
3121 | ht=nil | |
3122 | Debounces.on = false | |
3123 | Debounces.NoIdl = false | |
3124 | elseif ht == nil then wait() | |
3125 | Grab = false | |
3126 | Debounces.on = false | |
3127 | Debounces.NoIdl = false | |
3128 | end | |
3129 | end | |
3130 | end | |
3131 | end) | |
3132 | ---------------------------------------------------- | |
3133 | Charging = false | |
3134 | chargewait = false | |
3135 | mouse.KeyDown:connect(function(key) | |
3136 | if key == "h" then | |
3137 | if Charging == false and chargewait == false then | |
3138 | Charging = true | |
3139 | chargewait = true | |
3140 | if Debounces.CanAttack == true then | |
3141 | Debounces.CanAttack = false | |
3142 | Debounces.NoIdl = true | |
3143 | Debounces.on = true | |
3144 | ||
3145 | ||
3146 | if holy ~= true then | |
3147 | holy = true | |
3148 | else holy = false | |
3149 | end | |
3150 | ||
3151 | ||
3152 | for i = 1,20 do | |
3153 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-40)), 0.2) | |
3154 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(40)), 0.2) | |
3155 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2) | |
3156 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2) | |
3157 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2) | |
3158 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2) | |
3159 | if Debounces.on == false then break end | |
3160 | rs:wait() | |
3161 | end | |
3162 | pt=Instance.new('Part',torso) | |
3163 | pt.Anchored=true | |
3164 | pt.CanCollide=false | |
3165 | pt.Locked = true | |
3166 | pt.Material = "Neon" | |
3167 | pt.FormFactor='Custom' | |
3168 | pt.Size=Vector3.new(1,1,1) | |
3169 | pt.CFrame=root.CFrame*CFrame.new(0,-1,0) | |
3170 | pt.Transparency=.6 | |
3171 | ||
3172 | if holy == true then | |
3173 | pt.BrickColor=BrickColor.new('Cyan') | |
3174 | else | |
3175 | pt.BrickColor = BrickColor.new("Really black") | |
3176 | end | |
3177 | ||
3178 | msh=Instance.new('SpecialMesh',pt) | |
3179 | msh.MeshId='http://www.roblox.com/asset/?id=20329976' | |
3180 | msh.Scale=Vector3.new(8,4,8) | |
3181 | pt2=pt:clone() | |
3182 | pt2.Parent = torso | |
3183 | pt2.CFrame=root.CFrame*CFrame.new(0,-1,0) | |
3184 | ||
3185 | if holy == true then | |
3186 | pt2.BrickColor=BrickColor.new('Cyan') | |
3187 | else | |
3188 | pt2.BrickColor = BrickColor.new("Deep orange") | |
3189 | end | |
3190 | ||
3191 | ||
3192 | msh2=msh:clone() | |
3193 | msh2.Parent=pt2 | |
3194 | msh2.Scale=Vector3.new(10,5,10) | |
3195 | ||
3196 | custommath={25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,-25,-26,-27,-28,-29,-30,-31,-32,-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93,-94,-95,-96,-97,-98,-99,-100} | |
3197 | ||
3198 | bl = Instance.new("Part", char) | |
3199 | bl.Locked = true | |
3200 | bl.Name = "Shell" | |
3201 | ||
3202 | if holy == true then | |
3203 | bl.BrickColor = BrickColor.new("Cyan") | |
3204 | else | |
3205 | bl.BrickColor = BrickColor.new("Really black") | |
3206 | end | |
3207 | ||
3208 | bl.Anchored = true | |
3209 | bl.Material = "Neon" | |
3210 | bl.CanCollide = false | |
3211 | bl.Transparency = 0 | |
3212 | bl.Reflectance = 0 | |
3213 | bl.BottomSurface = 0 | |
3214 | bl.TopSurface = 0 | |
3215 | bl.Shape = 0 | |
3216 | blm = Instance.new("SpecialMesh",bl) | |
3217 | blm.MeshType = "Sphere" | |
3218 | blm.Scale = Vector3.new(1,1,1) | |
3219 | ||
3220 | so("http://www.roblox.com/asset/?id=340722848",hed,2,1.2) | |
3221 | so("http://www.roblox.com/asset/?id=340722848",torso,0.5,0.8) | |
3222 | so("http://roblox.com/asset/?id=168586621",torso,1,0.5) | |
3223 | ||
3224 | ||
3225 | ||
3226 | ||
3227 | if holy == true then | |
3228 | light() | |
3229 | ds:stop() | |
3230 | hs:play() | |
3231 | eColors = {"Cyan"} | |
3232 | for i,v in pairs(char:GetChildren()) do | |
3233 | if v:IsA("Part") or v:IsA("WedgePart") then | |
3234 | if v.Name ~= "HitBox" or v.Name ~= "Thingy" then | |
3235 | v.BrickColor = BrickColor.new("Cyan") | |
3236 | v.Material = "Neon" | |
3237 | end | |
3238 | end | |
3239 | end | |
3240 | ||
3241 | ||
3242 | for i,v in pairs(char.m:GetChildren()) do | |
3243 | if v:IsA("Part") or v:IsA("WedgePart") then | |
3244 | if v.Name ~= "HitBox" or v.Name ~= "Thingy" then | |
3245 | v.BrickColor = BrickColor.new("Cyan") | |
3246 | v.Material = "Neon" | |
3247 | end | |
3248 | end | |
3249 | end | |
3250 | ||
3251 | for i,v in pairs(char.m:GetChildren()) do | |
3252 | v.BrickColor = BrickColor.new("Cyan") | |
3253 | v.Material = "Neon" | |
3254 | end | |
3255 | ||
3256 | ||
3257 | ||
3258 | else | |
3259 | dark() | |
3260 | hs:stop() | |
3261 | ds:play() | |
3262 | eColors = {"Deep orange", "Really black"} | |
3263 | for i,v in pairs(char:GetChildren()) do | |
3264 | if v:IsA("Part") or v:IsA("WedgePart") then | |
3265 | if v.Name ~= "HitBox" or v.Name ~= "Thingy" then | |
3266 | v.BrickColor = BrickColor.new("Really black") | |
3267 | v.Material = "Metal" | |
3268 | end | |
3269 | end | |
3270 | end | |
3271 | ||
3272 | ||
3273 | for i,v in pairs(char.m:GetChildren()) do | |
3274 | if v:IsA("Part") or v:IsA("WedgePart") then | |
3275 | if v.Name ~= "HitBox" or v.Name ~= "Thingy" then | |
3276 | v.BrickColor = BrickColor.new("Deep orange") | |
3277 | v.Material = "Metal" | |
3278 | end | |
3279 | end | |
3280 | end | |
3281 | ||
3282 | ||
3283 | end | |
3284 | ||
3285 | coroutine.resume(coroutine.create(function() | |
3286 | for i=1, math.huge, 4 do | |
3287 | if Charging == true then | |
3288 | rs:wait() | |
3289 | bl.CFrame = root.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10)) | |
3290 | blm.Scale = blm.Scale + Vector3.new(0.5, 0.5, 0.5) | |
3291 | bl.Transparency = bl.Transparency + 0.05 | |
3292 | pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2),0) | |
3293 | pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2),0) | |
3294 | msh.Scale = msh.Scale + Vector3.new(0.05,0,0.05) | |
3295 | msh2.Scale = msh2.Scale + Vector3.new(0.05,0,0.05) | |
3296 | elseif Charging == false then break | |
3297 | end | |
3298 | end | |
3299 | end)) | |
3300 | ||
3301 | ||
3302 | repeat | |
3303 | local p = Instance.new('Part',torso) | |
3304 | p.formFactor = 'Custom' | |
3305 | p.Size = Vector3.new(1,1,1) | |
3306 | ||
3307 | if holy == true then | |
3308 | p.BrickColor = BrickColor.new("Cyan") | |
3309 | else | |
3310 | p.BrickColor = BrickColor.new("Really black") | |
3311 | end | |
3312 | ||
3313 | p.CanCollide = false | |
3314 | p.Transparency = 0 | |
3315 | p.Anchored = true | |
3316 | p.Locked=true | |
3317 | p.Material = "Neon" | |
3318 | s = math.random(1,40)/10 | |
3319 | local m = Instance.new("BlockMesh",p) | |
3320 | m.Scale = Vector3.new(s,s,s) | |
3321 | p.CFrame = torso.CFrame*CFrame.new(custommath[math.random(1,#custommath)]/10,-math.random(5,7),custommath[math.random(1,#custommath)]/10)*CFrame.Angles(math.random(),math.random(),math.random()) | |
3322 | --[[coroutine.wrap(function() | |
3323 | wait(2) | |
3324 | while Charging == true do | |
3325 | wait(2) | |
3326 | GroundWave1() | |
3327 | wait(2) | |
3328 | end | |
3329 | end)()]]-- | |
3330 | Spawn(function() | |
3331 | while rs:wait() do | |
3332 | if Charging == true then | |
3333 | rarm.Weld.C0 = CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(-30,-20)),math.rad(math.random(30,50))) | |
3334 | larm.Weld.C0 = CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(20,30)),math.rad(math.random(-50,-30))) | |
3335 | hed.Weld.C0 = CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(math.random(26,34)),math.rad(math.random(-5,5)),math.rad(0)) | |
3336 | torso.Weld.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(10), math.rad(math.random(-4,4)), math.rad(0)) | |
3337 | lleg.Weld.C0 = CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(10,20)), math.rad(math.random(-20,-10))) | |
3338 | rleg.Weld.C0 = CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(-20,-10)), math.rad(math.random(10,20))) | |
3339 | elseif Charging == false then break | |
3340 | end | |
3341 | end | |
3342 | end) | |
3343 | Spawn(function() | |
3344 | while rs:wait() do | |
3345 | if p.Transparency >= 1 then p:Destroy() break end | |
3346 | p.CFrame = p.CFrame*CFrame.Angles(math.rad(2),math.rad(2),math.rad(2))+Vector3.new(0,0.2,0) | |
3347 | p.Transparency = p.Transparency+0.01 | |
3348 | end | |
3349 | end) | |
3350 | wait(.3) | |
3351 | ||
3352 | ||
3353 | until Charging == false | |
3354 | end | |
3355 | end | |
3356 | end | |
3357 | end) | |
3358 | ||
3359 | ---------------------------------------------------- | |
3360 | mouse.KeyUp:connect(function(key) | |
3361 | if key == "h" then | |
3362 | if Charging == true and chargewait == true then | |
3363 | chargewait = false | |
3364 | wait(1) | |
3365 | Charging = false | |
3366 | ||
3367 | --[[for i,v in pairs (torso:GetChildren()) do | |
3368 | if v:IsA("Sound") then | |
3369 | v:Destroy() | |
3370 | end | |
3371 | end]] | |
3372 | ||
3373 | ||
3374 | --so("http://roblox.com/asset/?id=160867463",torso,1,0.7) | |
3375 | ||
3376 | pt:Destroy() | |
3377 | pt2:Destroy() | |
3378 | bl:Destroy() | |
3379 | if Debounces.CanAttack == false then | |
3380 | Debounces.CanAttack = true | |
3381 | Debounces.NoIdl = false | |
3382 | Debounces.on = false | |
3383 | Debounces.grab = false | |
3384 | ||
3385 | end | |
3386 | end | |
3387 | end | |
3388 | end) | |
3389 | ---------------------------------------------------- | |
3390 | Sit = false | |
3391 | mouse.KeyDown:connect(function(key) | |
3392 | if key == "b" then | |
3393 | if Sit == false then | |
3394 | Sit = true | |
3395 | hum.WalkSpeed = 0.1 | |
3396 | stanceToggle = "Sitting" | |
3397 | elseif Sit == true then | |
3398 | Sit = false | |
3399 | hum.WalkSpeed = 7 | |
3400 | stanceToggle = "Normal" | |
3401 | end | |
3402 | end | |
3403 | end) | |
3404 | ------------------------------- | |
3405 | Melee = false | |
3406 | mouse.KeyDown:connect(function(key) | |
3407 | if key == "m" then | |
3408 | if Melee == false then | |
3409 | Melee = true | |
3410 | Vanish() | |
3411 | stanceToggle = "Melee" | |
3412 | elseif Melee == true then | |
3413 | Melee = false | |
3414 | Appear() | |
3415 | stanceToggle = "Normal" | |
3416 | end | |
3417 | end | |
3418 | end) | |
3419 | ------------------------------- | |
3420 | ---------------------------------------------------- | |
3421 | mouse.KeyDown:connect(function(key) | |
3422 | if key == "n" then | |
3423 | if Debounces.CanAttack == true then | |
3424 | Debounces.CanAttack = false | |
3425 | Debounces.on = true | |
3426 | Debounces.NoIdl = true | |
3427 | hum.WalkSpeed = 50 | |
3428 | ||
3429 | BV = Instance.new("BodyVelocity", torso) | |
3430 | BV.maxForce = Vector3.new(math.huge,math.huge,math.huge) | |
3431 | BV.P = 300000 | |
3432 | BV.Velocity = Vector3.new(0,200,0) | |
3433 | game:GetService("Debris"):AddItem(BV,.07) | |
3434 | ||
3435 | for i = 1, 20 do | |
3436 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7) | |
3437 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7) | |
3438 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.53,0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7) | |
3439 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.53,0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7) | |
3440 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7) | |
3441 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.7) | |
3442 | if Debounces.on == false then break end | |
3443 | wait() | |
3444 | end | |
3445 | BV:Destroy() | |
3446 | if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then | |
3447 | for i = 1, 30 do | |
3448 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3) | |
3449 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3) | |
3450 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.53,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)), 0.3) | |
3451 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.53,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3) | |
3452 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 1) | |
3453 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 1) | |
3454 | if Debounces.on == false then break end | |
3455 | wait() | |
3456 | end | |
3457 | end | |
3458 | ||
3459 | ||
3460 | ||
3461 | ||
3462 | hum.WalkSpeed = 16 | |
3463 | Debounces.on = false | |
3464 | Debounces.NoIdl = false | |
3465 | if Debounces.CanAttack == false then | |
3466 | Debounces.CanAttack = true | |
3467 | end | |
3468 | end | |
3469 | end | |
3470 | end) | |
3471 | ---------------------------------------------------- | |
3472 | mouse.KeyDown:connect(function(key) | |
3473 | if string.byte(key) == 50 then | |
3474 | if Debounces.CanAttack == true then | |
3475 | if stanceToggle ~= "Floating" then | |
3476 | char.Humanoid.WalkSpeed = 60 | |
3477 | Burst() | |
3478 | elseif Debounces.CanAttack == false then | |
3479 | elseif stanceToggle == "Floating" then | |
3480 | wait() | |
3481 | end | |
3482 | end | |
3483 | end | |
3484 | end) | |
3485 | mouse.KeyUp:connect(function(key) | |
3486 | if string.byte(key) == 50 then | |
3487 | char.Humanoid.WalkSpeed = 9 | |
3488 | end | |
3489 | end) | |
3490 | ------------------------------- | |
3491 | mouse.KeyDown:connect(function(key) | |
3492 | if key == "p" then | |
3493 | if CanAttack == true then | |
3494 | CanAttack = false | |
3495 | Debounces.NoIdl = true | |
3496 | Debounces.on = true | |
3497 | for i = 1, 20 do | |
3498 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.2, -2.75) * CFrame.Angles(math.rad(90), math.rad(40), math.rad(0)), 0.6) | |
3499 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1, 1, -.5) * CFrame.Angles(math.rad(130), math.rad(0), math.rad(40)), 0.3) | |
3500 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, 1, -.5) * CFrame.Angles(math.rad(130), math.rad(0), math.rad(-40)), 0.3) | |
3501 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.6) | |
3502 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(10)), 0.6) | |
3503 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.6) | |
3504 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 12, 0) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)), 0.2) | |
3505 | if Debounces.on == false then | |
3506 | break | |
3507 | end | |
3508 | wait() | |
3509 | end | |
3510 | wait() | |
3511 | z = Instance.new("Sound") | |
3512 | z.SoundId = "http://www.roblox.com/asset/?id=159218913" | |
3513 | z.Parent = char.Head | |
3514 | z.Looped = false | |
3515 | z.Pitch = 1 | |
3516 | z.Volume = 1 | |
3517 | wait(.01) | |
3518 | z:Play() | |
3519 | Debounces.Slashing = true | |
3520 | for i = 1, 20 do | |
3521 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.2, -2.75) * CFrame.Angles(math.rad(90), math.rad(40), math.rad(0)), 0.6) | |
3522 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1, .5, -.5) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(40)), 0.6) | |
3523 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .5, -.5) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-40)), 0.6) | |
3524 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1.5, -.5) * CFrame.Angles(math.rad(-90), 0, math.rad(0)), 0.6) | |
3525 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -.5, -1) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.6) | |
3526 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.6) | |
3527 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.6) | |
3528 | wait() | |
3529 | if Debounces.on == false then | |
3530 | break | |
3531 | end | |
3532 | wait() | |
3533 | end | |
3534 | Debounces.Slashing = false | |
3535 | Debounces.NoIdl = false | |
3536 | wait() | |
3537 | if CanAttack == false then | |
3538 | CanAttack = true | |
3539 | end | |
3540 | end | |
3541 | end | |
3542 | end) | |
3543 | -------------------------------- | |
3544 | ---------------------------------------------------- | |
3545 | mouse.KeyDown:connect(function(key) | |
3546 | if key == "v" then | |
3547 | if Debounces.CanAttack == true then | |
3548 | Debounces.CanAttack = false | |
3549 | Debounces.on = true | |
3550 | Debounces.NoIdl = true | |
3551 | for i = 1, 15 do | |
3552 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2) | |
3553 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6) | |
3554 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2) | |
3555 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.4) | |
3556 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2) | |
3557 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2) | |
3558 | if Debounces.on == false then break end | |
3559 | rs:wait(2.7) | |
3560 | end | |
3561 | so("http://roblox.com/asset/?id=231917788",hed,1,0.7) | |
3562 | x = Instance.new("Sound",char.Head) | |
3563 | x.SoundId = "rbxassetid://183763515" | |
3564 | x.Pitch = 0.7 | |
3565 | x.Volume = .8 | |
3566 | x3 = Instance.new("Sound",char.Head) | |
3567 | x3.SoundId = "rbxassetid://183763487" | |
3568 | x3.Pitch = 1 | |
3569 | x3.Volume = .8 | |
3570 | wait(.1) | |
3571 | x:Play() | |
3572 | x3:Play() | |
3573 | ||
3574 | if holy == true then | |
3575 | so("http://roblox.com/asset/?id=233091161",hed,1,0.6) | |
3576 | so("http://roblox.com/asset/?id=2233091183",hed,1,1) | |
3577 | else | |
3578 | end | |
3579 | ||
3580 | Debounces.on = false | |
3581 | Debounces.Here = false | |
3582 | shot = shot + 1 | |
3583 | local rng = Instance.new("Part", larm) | |
3584 | rng.Anchored = true | |
3585 | ||
3586 | if holy ~= true then | |
3587 | rng.BrickColor = BrickColor.new("Deep orange") | |
3588 | else | |
3589 | rng.BrickColor = BrickColor.new("Cyan") | |
3590 | end | |
3591 | ||
3592 | rng.Material = "Neon" | |
3593 | rng.CanCollide = false | |
3594 | rng.FormFactor = 3 | |
3595 | rng.Name = "Ring" | |
3596 | rng.Size = Vector3.new(1, 1, 1) | |
3597 | rng.Transparency = 0.35 | |
3598 | rng.TopSurface = 0 | |
3599 | rng.BottomSurface = 0 | |
3600 | rng2 = rng:clone() | |
3601 | rng3 = rng2:clone() | |
3602 | rng4 = rng2:clone() | |
3603 | local rngm = Instance.new("SpecialMesh", rng) | |
3604 | rngm.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
3605 | rngm.Scale = Vector3.new(10, 10, 1) | |
3606 | rngm2 = rngm:clone() | |
3607 | rngm2.Scale = Vector3.new(5, 5, 3) | |
3608 | rngm3=rngm2:clone() | |
3609 | rngm3.Parent = rng3 | |
3610 | rngm3.Scale = Vector3.new(8, 8, 1) | |
3611 | rngm4 = rngm2:clone() | |
3612 | rngm4.Parent = rng4 | |
3613 | rngm4.Scale = Vector3.new(6, 6, 1) | |
3614 | local bem = Instance.new("Part", larm) | |
3615 | bem.Anchored = true | |
3616 | ||
3617 | if holy == false then | |
3618 | bem.BrickColor = BrickColor.new("Really black") | |
3619 | else | |
3620 | bem.BrickColor = BrickColor.new("Cyan") | |
3621 | end | |
3622 | ||
3623 | bem.CanCollide = false | |
3624 | bem.Material = "Neon" | |
3625 | bem.FormFactor = 3 | |
3626 | bem.Name = "Beam" .. shot | |
3627 | bem.Size = Vector3.new(1, 1, 1) | |
3628 | bem.Transparency = 0.35 | |
3629 | bem.TopSurface = 0 | |
3630 | bem.BottomSurface = 0 | |
3631 | local bemm = Instance.new("SpecialMesh", bem) | |
3632 | bemm.MeshType = 4 | |
3633 | bemm.Scale = Vector3.new(1, 4, 4) | |
3634 | local out = Instance.new("Part", larm) | |
3635 | out.Anchored = true | |
3636 | out.Material = "Neon" | |
3637 | ||
3638 | if holy == false then | |
3639 | out.BrickColor = BrickColor.new("Really black") | |
3640 | else | |
3641 | out.BrickColor = BrickColor.new("Cyan") | |
3642 | end | |
3643 | ||
3644 | out.CanCollide = false | |
3645 | out.FormFactor = 3 | |
3646 | out.Name = "Out" | |
3647 | out.Size = Vector3.new(4, 4, 4) | |
3648 | out.Transparency = 0.35 | |
3649 | out.TopSurface = 0 | |
3650 | out.BottomSurface = 0 | |
3651 | local outm = Instance.new("SpecialMesh", out) | |
3652 | outm.MeshId = "http://www.roblox.com/asset/?id=1033714" | |
3653 | outm.Scale = Vector3.new(6, 4, 6) | |
3654 | local bnd = Instance.new("Part", larm) | |
3655 | bnd.Anchored = true | |
3656 | bnd.BrickColor = BrickColor.new("Really red") | |
3657 | bnd.CanCollide = false | |
3658 | bnd.FormFactor = 3 | |
3659 | bnd.Name = "Bend" | |
3660 | bnd.Size = Vector3.new(1, 1, 1) | |
3661 | bnd.Transparency = 1 | |
3662 | bnd.TopSurface = 0 | |
3663 | bnd.BottomSurface = 0 | |
3664 | local bndm = Instance.new("SpecialMesh", bnd) | |
3665 | bndm.MeshType = 3 | |
3666 | bndm.Scale = Vector3.new(8, 8, 8) | |
3667 | out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0) | |
3668 | bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90)) | |
3669 | bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0) | |
3670 | rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0) | |
3671 | rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0) | |
3672 | rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0) | |
3673 | Debounces.Shewt = true | |
3674 | coroutine.wrap(function() | |
3675 | for i = 1, 20, 0.2 do | |
3676 | rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1) | |
3677 | rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1) | |
3678 | rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1) | |
3679 | rng.Transparency = i/20 | |
3680 | rng3.Transparency = 1/24 | |
3681 | rng4.Transparency = i/26 | |
3682 | wait() | |
3683 | end | |
3684 | wait() | |
3685 | rng:Destroy() | |
3686 | end)() | |
3687 | if Debounces.Shewt == true then | |
3688 | larm:WaitForChild("Beam" .. shot).Touched:connect(function(ht) | |
3689 | hit = ht.Parent | |
3690 | if hit:IsA("Model") and hit:findFirstChild("Humanoid") then | |
3691 | if HasntTouched(hit.Name) == true and deb == false then | |
3692 | deb = true | |
3693 | coroutine.wrap(function() | |
3694 | hit:FindFirstChild("Humanoid").PlatformStand = true | |
3695 | hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180 | |
3696 | hit:FindFirstChild("Humanoid"):TakeDamage(math.random(240000000,730000000)) | |
3697 | end)() | |
3698 | table.insert(Touche, hit.Name) | |
3699 | deb = false | |
3700 | end | |
3701 | elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then | |
3702 | if HasntTouched(hit.Parent.Name) == true and deb == false then | |
3703 | deb = true | |
3704 | coroutine.wrap(function() | |
3705 | hit.Parent:FindFirstChild("Humanoid").PlatformStand = true | |
3706 | hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180 | |
3707 | wait(1) | |
3708 | hit.Parent:FindFirstChild("Humanoid").PlatformStand = false | |
3709 | end)() | |
3710 | table.insert(Touche, hit.Parent.Name) | |
3711 | deb = false | |
3712 | for i, v in pairs(Touche) do | |
3713 | print(v) | |
3714 | end | |
3715 | end | |
3716 | end | |
3717 | end) | |
3718 | end | |
3719 | for i = 0, 260, 8 do | |
3720 | bem.Size = Vector3.new(i, 3, 3) | |
3721 | out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0) | |
3722 | bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90)) | |
3723 | bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2) | |
3724 | bnd.Size = Vector3.new(1,1,1) | |
3725 | bndm.Scale = Vector3.new(8,8,8) | |
3726 | if i % 10 == 0 then | |
3727 | local newRng = rng2:Clone() | |
3728 | newRng.Parent = larm | |
3729 | newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0) | |
3730 | local newRngm = rngm2:clone() | |
3731 | newRngm.Parent=newRng | |
3732 | coroutine.wrap(function() | |
3733 | for i = 1, 10, 0.2 do | |
3734 | newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3) | |
3735 | newRng.Transparency = i/10 | |
3736 | wait() | |
3737 | end | |
3738 | wait() | |
3739 | newRng:Destroy() | |
3740 | end)() | |
3741 | end | |
3742 | wait() | |
3743 | end | |
3744 | wait() | |
3745 | Debounces.Shewt = false | |
3746 | bem:Destroy() | |
3747 | out:Destroy() | |
3748 | bnd:Destroy() | |
3749 | Debounces.Ready = false | |
3750 | for i, v in pairs(Touche) do | |
3751 | table.remove(Touche, i) | |
3752 | end | |
3753 | wait() | |
3754 | table.insert(Touche, char.Name) | |
3755 | Debounces.NoIdl = false | |
3756 | if Debounces.CanAttack == false then | |
3757 | Debounces.CanAttack = true | |
3758 | end | |
3759 | end | |
3760 | end | |
3761 | end) | |
3762 | ---------------------------------------------------- | |
3763 | ---------------------------------------------------- | |
3764 | mouse.KeyDown:connect(function(key) | |
3765 | if key == "y" then | |
3766 | if CanAttack == true then | |
3767 | CanAttack = false | |
3768 | Debounces.NoIdl = true | |
3769 | Debounces.on = true | |
3770 | for i = 1, 20 do | |
3771 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.2) | |
3772 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.2) | |
3773 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, 0.5, -1) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2) | |
3774 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, 0.5, -1) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2) | |
3775 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-26), math.rad(0), 0), 0.2) | |
3776 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2) | |
3777 | if Debounces.on == false then | |
3778 | break | |
3779 | end | |
3780 | wait() | |
3781 | end | |
3782 | wait() | |
3783 | if Daytime == true then | |
3784 | Daytime = false | |
3785 | l.TimeOfDay = 24 | |
3786 | else | |
3787 | Daytime = true | |
3788 | l.TimeOfDay = 12 | |
3789 | l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039) | |
3790 | end | |
3791 | char.Humanoid.MaxHealth = math.huge | |
3792 | c = Instance.new("Sound") | |
3793 | c.SoundId = "http://www.roblox.com/asset/?id=152758283" | |
3794 | c.Parent = m | |
3795 | c.Looped = false | |
3796 | if Daytime == true then | |
3797 | c.Pitch = -1 | |
3798 | elseif Daytime == false then | |
3799 | c.Pitch = 1.12 | |
3800 | end | |
3801 | c.Volume = 1 | |
3802 | wait(.01) | |
3803 | c:Play() | |
3804 | local Shockwave = function() | |
3805 | local Wave = Instance.new("Part", game.Workspace--[[?]]) | |
3806 | Wave.Name = "Shockwave" | |
3807 | Wave.BrickColor = BrickColor.new("Really black") | |
3808 | Wave.Size = Vector3.new(1, 1, 1) | |
3809 | Wave.Shape = "Ball" | |
3810 | Wave.CanCollide = false | |
3811 | Wave.Anchored = true | |
3812 | Wave.TopSurface = 0 | |
3813 | Wave.BottomSurface = 0 | |
3814 | Wave.Touched:connect(function(hit) | |
3815 | print(hit.Name) | |
3816 | if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then | |
3817 | if hit.Parent.Name ~= char.Name then | |
3818 | print("Damaged " .. hit.Parent.Name) | |
3819 | hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1 | |
3820 | hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120 | |
3821 | end | |
3822 | end | |
3823 | end) | |
3824 | ||
3825 | Instance.new("SpecialMesh", Wave).MeshType = "Sphere" | |
3826 | ||
3827 | Delay(0, function() | |
3828 | -- | |
3829 | -- Okay. | |
3830 | if Daytime == false then | |
3831 | for i = 1, 38, 1 do | |
3832 | Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i) | |
3833 | Wave.CFrame = char.Torso.CFrame | |
3834 | local t = i / 38 | |
3835 | Wave.Transparency = t | |
3836 | wait() | |
3837 | end | |
3838 | else | |
3839 | for i = 38, 1, -1 do | |
3840 | Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i) | |
3841 | Wave.CFrame = char.Torso.CFrame | |
3842 | local t = i / 38 | |
3843 | Wave.Transparency = t | |
3844 | wait() | |
3845 | end | |
3846 | end | |
3847 | Wave:Destroy() | |
3848 | end) | |
3849 | Delay(0, function() | |
3850 | while wait() do | |
3851 | if Wave ~= nil then | |
3852 | Wave.CFrame = char.Torso.CFrame | |
3853 | else | |
3854 | break | |
3855 | end | |
3856 | end | |
3857 | end) | |
3858 | end | |
3859 | ||
3860 | Shockwave() | |
3861 | ||
3862 | for i = 1, 20 do | |
3863 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, .5, 0) * CFrame.Angles(math.rad(120), 0, math.rad(-100)), 0.6) | |
3864 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, .5, 0) * CFrame.Angles(math.rad(120), 0, math.rad(100)), 0.6) | |
3865 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-20)), 0.6) | |
3866 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(20)), 0.6) | |
3867 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(35), math.rad(0), 0), 0.6) | |
3868 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)), 0.6) | |
3869 | wait() | |
3870 | if Debounces.on == false then | |
3871 | break | |
3872 | end | |
3873 | wait() | |
3874 | end | |
3875 | wait(2) | |
3876 | Debounces.NoIdl = false | |
3877 | if CanAttack == false then | |
3878 | CanAttack = true | |
3879 | wait() | |
3880 | end | |
3881 | end -- for the canattack thing | |
3882 | end | |
3883 | end) | |
3884 | ------------------------------- | |
3885 | local animpose = "Idle" | |
3886 | local lastanimpose = "Idle" | |
3887 | local grab = false | |
3888 | local sine = 0 | |
3889 | local change = 1 | |
3890 | local val = 0 | |
3891 | local ffing = false | |
3892 | local jump = false | |
3893 | ------------------------------- | |
3894 | --[[if stanceToggle == "Sitting" then | |
3895 | if wait(math.random(1,2)) == 1 then | |
3896 | stanceToggle = "Sitting2" | |
3897 | wait(8) | |
3898 | stanceToggle = "Sitting" | |
3899 | end | |
3900 | end]]-- | |
3901 | ------------------------------- | |
3902 | game:GetService("RunService").RenderStepped:connect(function() | |
3903 | if char.Humanoid.Jump == true then | |
3904 | jump = true | |
3905 | else | |
3906 | jump = false | |
3907 | end | |
3908 | char.Humanoid.FreeFalling:connect(function(f) | |
3909 | if f then | |
3910 | ffing = true | |
3911 | else | |
3912 | ffing = false | |
3913 | end | |
3914 | end) | |
3915 | sine = sine + change | |
3916 | if jump == true then | |
3917 | animpose = "Jumping" | |
3918 | elseif ffing == true then | |
3919 | animpose = "Freefalling" | |
3920 | elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then | |
3921 | animpose = "Idle" | |
3922 | elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then | |
3923 | animpose = "Walking" | |
3924 | elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then | |
3925 | animpose = "Running" | |
3926 | end | |
3927 | if animpose ~= lastanimpose then | |
3928 | sine = 0 | |
3929 | if Debounces.NoIdl == false then | |
3930 | if stanceToggle == "Normal" and holy ~= true then | |
3931 | for i = 1, 2 do | |
3932 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(40)), 0.2) | |
3933 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-20)), 0.2) | |
3934 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.2) | |
3935 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.2) | |
3936 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2) | |
3937 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-15), math.rad(20)), 0.2) | |
3938 | cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3) | |
3939 | end | |
3940 | elseif stanceToggle == "Sitting" then | |
3941 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/30),0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(20+2*math.cos(sine/30))), 0.2) | |
3942 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2, 0.5, -.54) * CFrame.Angles(math.rad(88), 0, math.rad(48)), 0.6) | |
3943 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.3) | |
3944 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-20), math.sin(sine/60)/3, 0), 0.3) | |
3945 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1) * CFrame.Angles(math.rad(-6), 0, 0), 0.3) | |
3946 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-56), 0, 0), 0.3) | |
3947 | elseif stanceToggle == "Floating" then | |
3948 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.4) | |
3949 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.4) | |
3950 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2) | |
3951 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1-0.4*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05) | |
3952 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4) | |
3953 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4) | |
3954 | wait() | |
3955 | end | |
3956 | else | |
3957 | end | |
3958 | end | |
3959 | lastanimpose = animpose | |
3960 | if Debounces.NoIdl == false then | |
3961 | if animpose == "Idle" then | |
3962 | if stanceToggle == "Normal" and holy ~= true then | |
3963 | change = 0.5 | |
3964 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(40+2*math.cos(sine/14))), 0.2) | |
3965 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-20-2*math.cos(sine/14))), 0.2) | |
3966 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(50),0), 0.2) | |
3967 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.2) | |
3968 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2) | |
3969 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-15), math.rad(20)), 0.2) | |
3970 | elseif stanceToggle == "Normal" and holy == true then | |
3971 | change = 0.8 | |
3972 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.4) | |
3973 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.4) | |
3974 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2) | |
3975 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05) | |
3976 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4) | |
3977 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4) | |
3978 | elseif stanceToggle == "Melee" and holy ~= true then | |
3979 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(20+2*math.cos(sine/14))), 0.2) | |
3980 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20-2*math.cos(sine/14))), 0.2) | |
3981 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-20+1*math.cos(sine/14)),math.rad(0),0), 0.2) | |
3982 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2) | |
3983 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
3984 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
3985 | elseif stanceToggle == "Melee" and holy == true then | |
3986 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.4) | |
3987 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.4) | |
3988 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2) | |
3989 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05) | |
3990 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4) | |
3991 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4) | |
3992 | elseif stanceToggle == "Sitting" then | |
3993 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(20)), 0.2) | |
3994 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2, 0.5, -.54) * CFrame.Angles(math.rad(88), 0, math.rad(48)), 0.6) | |
3995 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.3) | |
3996 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5-0.06*math.cos(sine/25), -.2) * CFrame.Angles(math.rad(0-20*math.cos(sine/25)/2), math.sin(sine/50)/2.4, 0), 0.3) | |
3997 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1) * CFrame.Angles(math.rad(-6), 0, 0), 0.3) | |
3998 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-56), 0, 0), 0.3) | |
3999 | elseif stanceToggle == "Floating" then | |
4000 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.4) | |
4001 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.4) | |
4002 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2) | |
4003 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1-0.4*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05) | |
4004 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4) | |
4005 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4) | |
4006 | elseif stanceToggle == "Grabbed" and holy ~= true then | |
4007 | grab = true | |
4008 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(40+2*math.cos(sine/14))), 0.2) | |
4009 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/14),-.5)*CFrame.Angles(math.rad(130+4*math.cos(sine/14)),math.rad(0),math.rad(-60+4*math.cos(sine/14))), 0.3) | |
4010 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14+2*math.cos(sine/14)),math.rad(70-4*math.cos(sine/14)),0), 0.3) | |
4011 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3) | |
4012 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3) | |
4013 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3) | |
4014 | elseif stanceToggle == "Grabbed" and holy == true then | |
4015 | grab = true | |
4016 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(40+2*math.cos(sine/14))), 0.2) | |
4017 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/14),-.5)*CFrame.Angles(math.rad(130+4*math.cos(sine/14)),math.rad(0),math.rad(-60+4*math.cos(sine/14))), 0.3) | |
4018 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14+2*math.cos(sine/14)),math.rad(70-4*math.cos(sine/14)),0), 0.3) | |
4019 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05) | |
4020 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4) | |
4021 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4) | |
4022 | end | |
4023 | elseif animpose == "Walking" then | |
4024 | if stanceToggle == "Normal" and holy ~= true then | |
4025 | change = 1 | |
4026 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5, 0)*CFrame.Angles(math.rad(-20), math.rad(-20),math.rad(40)), 0.2) | |
4027 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6, -math.sin(sine/8)/2.8)*CFrame.Angles(math.sin(sine/8)/4, -math.sin(sine/8)/2, math.rad(-10)), 0.2) | |
4028 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/4)), math.rad(0), math.rad(0)),0.2) | |
4029 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/4), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/4)), 0, math.rad(0)), 0.2) | |
4030 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1-0.14*math.cos(sine/8)/2.8, -0.05 + math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(-10) + -math.sin(sine/8)/2.3, 0, 0), .4) | |
4031 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1+0.14*math.cos(sine/8)/2.8, -0.05 + -math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(-10) + math.sin(sine/8)/2.3, 0, 0), .4) | |
4032 | elseif stanceToggle == "Normal" and holy == true then | |
4033 | for i = 1, 2 do | |
4034 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2) | |
4035 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2) | |
4036 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4) | |
4037 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05) | |
4038 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4) | |
4039 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4) | |
4040 | end | |
4041 | elseif stanceToggle == "Melee" and holy ~= true then | |
4042 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5-.05*math.cos(sine/4), math.sin(sine/8)/4) * CFrame.Angles(-math.sin(sine/8)/2.8, -math.sin(sine/8)/3, math.rad(10+2*math.cos(sine/4))), 0.2) | |
4043 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5+.05*math.cos(sine/4), -math.sin(sine/8)/4)*CFrame.Angles(math.sin(sine/8)/2.8, -math.sin(sine/8)/3, math.rad(-10-2*math.cos(sine/4))), 0.2) | |
4044 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/4)), math.rad(0), math.rad(0)),0.2) | |
4045 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.07*math.cos(sine/4), 0) * CFrame.Angles(math.rad(-4+1*math.cos(sine/4)), 0, math.rad(0)), 0.2) | |
4046 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1-0.14*math.cos(sine/8)/2.8, -0.05 + math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(-10) + -math.sin(sine/8)/2.3, 0, 0), .4) | |
4047 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1+0.14*math.cos(sine/8)/2.8, -0.05 + -math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(-10) + math.sin(sine/8)/2.3, 0, 0), .4) | |
4048 | elseif stanceToggle == "Melee" and holy == true then | |
4049 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2) | |
4050 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2) | |
4051 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4) | |
4052 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05) | |
4053 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4) | |
4054 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4) | |
4055 | elseif stanceToggle == "Floating" then | |
4056 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2) | |
4057 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2) | |
4058 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0), 0.4) | |
4059 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0-8*math.cos(sine/14)), 0, math.rad(-8)), 0.4) | |
4060 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(1-9*math.cos(sine/13)), 0, math.rad(8)), 0.4) | |
4061 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1-0.2*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05) | |
4062 | elseif stanceToggle == "Grabbed" and holy ~= true then | |
4063 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5, 0)*CFrame.Angles(math.rad(-20), math.rad(-20),math.rad(40)), 0.2) | |
4064 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(-30)), 0.3) | |
4065 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/4)), math.rad(0), math.rad(0)),0.2) | |
4066 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/4), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/4)), 0, math.rad(0)), 0.2) | |
4067 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1-0.14*math.cos(sine/8)/2.8, -0.05 + math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(-10) + -math.sin(sine/8)/2.3, 0, 0), .4) | |
4068 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1+0.14*math.cos(sine/8)/2.8, -0.05 + -math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(-10) + math.sin(sine/8)/2.3, 0, 0), .4) | |
4069 | elseif stanceToggle == "Grabbed" and holy == true then | |
4070 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5, 0)*CFrame.Angles(math.rad(-20), math.rad(-20),math.rad(40)), 0.2) | |
4071 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(-30)), 0.3) | |
4072 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0), 0.4) | |
4073 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0-8*math.cos(sine/14)), 0, math.rad(-8)), 0.4) | |
4074 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(1-9*math.cos(sine/13)), 0, math.rad(8)), 0.4) | |
4075 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05) | |
4076 | end | |
4077 | elseif animpose == "Running" then | |
4078 | if stanceToggle == "Normal" and holy ~= true then | |
4079 | change = 1 | |
4080 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles (math.rad(44), math.rad (0), math.rad(0)), 0.15) | |
4081 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.1*math.cos(sine/14), -1) * CFrame.Angles(math.rad(- 80), math.rad(0), 0), 0.15) | |
4082 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad (0), math.rad(50), math.rad(-40)), 0.15) | |
4083 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(40)), 0.15) | |
4084 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(8), math.rad(0), math.rad(- 10)), .15) | |
4085 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(8), math.rad(0), math.rad(10)), .15) | |
4086 | elseif stanceToggle == "Normal" and holy == true then | |
4087 | change = 1 | |
4088 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.35,.4)*CFrame.Angles(math.rad(250),math.rad(350),math.rad(-30+2*math.cos(sine/14))), 0.2)--cfawm | |
4089 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.55,-.4)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(40-2*math.cos(sine/14))), 0.2) | |
4090 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(20),math.rad(10),0), 0.4) | |
4091 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-40),math.rad(-10), math.rad(0)), 0.2) | |
4092 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.2) * CFrame.Angles(math.rad(-20), math.rad(10), math.rad(0)), 0.4) | |
4093 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), math.rad(10), math.rad(0)), 0.4) | |
4094 | elseif stanceToggle == "Floating" then | |
4095 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2) | |
4096 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2) | |
4097 | hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0) | |
4098 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(-8)), 0.4) | |
4099 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(8)), 0.4) | |
4100 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1-0.4*math.cos(sine/14), -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05) | |
4101 | end | |
4102 | end | |
4103 | end | |
4104 | end) | |
4105 | ||
4106 | Spawn(function() | |
4107 | while wait() do | |
4108 | updateFly() | |
4109 | end | |
4110 | end) | |
4111 | ||
4112 | Spawn(function() | |
4113 | while wait(.1) do | |
4114 | Magik() | |
4115 | end | |
4116 | end) | |
4117 | ||
4118 | Spawn(function() | |
4119 | while wait(.1) do | |
4120 | Magik2() | |
4121 | end | |
4122 | end) | |
4123 | ||
4124 | Spawn(function() | |
4125 | while wait(4) do | |
4126 | GroundWave() | |
4127 | end | |
4128 | end) | |
4129 | ||
4130 | ||
4131 | ||
4132 | ||
4133 | ||
4134 | function Lightning(Part0,Part1,Times,Offset,Color,Thickness,Trans) -- Lightning module | |
4135 | --[[Part0 = Vector3 (Start pos) | |
4136 | Part1 = Vector3 (End pos) | |
4137 | Times = number (Amount of lightning parts) | |
4138 | Offset = number (Offset) | |
4139 | Color = color (brickcolor value) | |
4140 | Thickness = number (thickness) | |
4141 | Trans = number (transparency) | |
4142 | ]]-- | |
4143 | local magz = (Part0 - Part1).magnitude | |
4144 | local curpos = Part0 | |
4145 | local trz = {-Offset,Offset} | |
4146 | for i=1,Times do | |
4147 | local li = Instance.new("Part", torso) | |
4148 | li.Name = "Lightning" | |
4149 | li.TopSurface =0 | |
4150 | li.Material = "Neon" | |
4151 | li.BottomSurface = 0 | |
4152 | li.Anchored = true | |
4153 | li.Locked = true | |
4154 | li.Transparency = Trans or 0.4 | |
4155 | li.BrickColor = BrickColor.new(Color) | |
4156 | li.formFactor = "Custom" | |
4157 | li.CanCollide = false | |
4158 | li.Size = Vector3.new(Thickness,Thickness,magz/Times) | |
4159 | local Offzet = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)]) | |
4160 | local trolpos = CFrame.new(curpos,Part1)*CFrame.new(0,0,magz/Times).p+Offzet | |
4161 | if Times == i then | |
4162 | local magz2 = (curpos - Part1).magnitude | |
4163 | li.Size = Vector3.new(Thickness,Thickness,magz2) | |
4164 | li.CFrame = CFrame.new(curpos,Part1)*CFrame.new(0,0,-magz2/2) | |
4165 | else | |
4166 | li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2) | |
4167 | end | |
4168 | curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p | |
4169 | game.Debris:AddItem(li,.1) | |
4170 | end | |
4171 | end | |
4172 | ||
4173 | BodyParts = {} -- Parts to emit lightning effects from | |
4174 | for _, v in pairs(char.Genkadda:GetChildren()) do | |
4175 | if v:IsA("Part") and v.Name ~= "HitBox" and v.Name ~= "Thingy" then | |
4176 | table.insert(BodyParts, v) | |
4177 | end | |
4178 | end | |
4179 | ||
4180 | Bounding = {} -- Calculate the bounding boxes | |
4181 | for _, v in pairs(BodyParts) do | |
4182 | local temp = {X=nil, Y=nil, Z=nil} | |
4183 | temp.X = v.Size.X/2 * 10 | |
4184 | temp.Y = v.Size.Y/2 * 10 | |
4185 | temp.Z = v.Size.Z/2 * 10 | |
4186 | Bounding[v.Name] = temp | |
4187 | --table.insert(Bounding, v.Name, temp) | |
4188 | end | |
4189 | ||
4190 | ||
4191 | ||
4192 | while wait(lightspeed) do -- Emit the Lightning effects randomly, original was (1,10)/10 | |
4193 | ||
4194 | if Melee ~= true then --[[Make sure we only see the lightning when holding our sword]] | |
4195 | ||
4196 | if holy == true then | |
4197 | lightspeed = math.random(0.1,0.2) | |
4198 | else | |
4199 | lightspeed = math.random(0.5,1) | |
4200 | end | |
4201 | ||
4202 | local Body1 = BodyParts[math.random(#BodyParts)] | |
4203 | local Body2 = BodyParts[math.random(#BodyParts)] | |
4204 | local Pos1 = Vector3.new( | |
4205 | math.random(-Bounding[Body1.Name].X, Bounding[Body1.Name].X)/10, | |
4206 | math.random(-Bounding[Body1.Name].Y, Bounding[Body1.Name].Y)/10, | |
4207 | math.random(-Bounding[Body1.Name].Z, Bounding[Body1.Name].Z)/10 | |
4208 | ) | |
4209 | local Pos2 = Vector3.new( | |
4210 | math.random(-Bounding[Body2.Name].X, Bounding[Body2.Name].X)/10, | |
4211 | math.random(-Bounding[Body2.Name].Y, Bounding[Body2.Name].Y)/10, | |
4212 | math.random(-Bounding[Body2.Name].Z, Bounding[Body2.Name].Z)/10 | |
4213 | ) | |
4214 | local SPos1 = Body1.Position + Pos1 | |
4215 | local SPos2 = Body2.Position + Pos2 | |
4216 | ||
4217 | ||
4218 | ||
4219 | Lightning(SPos1, SPos2, 4, 3, eColors[math.random(1,#eColors)], .2, .56) | |
4220 | ||
4221 | ||
4222 | end | |
4223 | end |