SHOW:
|
|
- or go back to the newest paste.
1 | - | --[[User: TheDarkRevenant |
1 | + | --[[User: basstracker1970 |
2 | Script: Absalom (Armored).lua | |
3 | Pass: cUpnjTnT]] | |
4 | ||
5 | local p = game.Players.LocalPlayer | |
6 | local char = p.Character | |
7 | local mouse = p:GetMouse() | |
8 | local larm = char["Left Arm"] | |
9 | local rarm = char["Right Arm"] | |
10 | local lleg = char["Left Leg"] | |
11 | local rleg = char["Right Leg"] | |
12 | local hed = char.Head | |
13 | local torso = char.Torso | |
14 | local hum = char.Humanoid | |
15 | local cam = game.Workspace.CurrentCamera | |
16 | local root = char.HumanoidRootPart | |
17 | local deb = false | |
18 | local shot = 0 | |
19 | local l = game:GetService("Lighting") | |
20 | local rs = game:GetService("RunService").RenderStepped | |
21 | local debris=game:service"Debris" | |
22 | local stanceToggle = "Normal" | |
23 | math.randomseed(os.time()) | |
24 | hum.WalkSpeed = 7 | |
25 | char.Health:Destroy() | |
26 | hum.MaxHealth = 50000 | |
27 | wait(0.1) | |
28 | hum.Health = 50000 | |
29 | ---------------------------------------------------- | |
30 | ypcall(function() | |
31 | char.Shirt:Destroy() | |
32 | char.Pants:Destroy() | |
33 | shirt = Instance.new("Shirt", char) | |
34 | shirt.Name = "Shirt" | |
35 | pants = Instance.new("Pants", char) | |
36 | pants.Name = "Pants" | |
37 | char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507" | |
38 | char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261" | |
39 | end) | |
40 | ---------------------------------------------------- | |
41 | Debounces = { | |
42 | on = false; | |
43 | ks = false; | |
44 | CanAttack = true; | |
45 | CanJoke = true; | |
46 | NoIdl = false; | |
47 | Slashing = false; | |
48 | Slashed = false; | |
49 | Grabbing = false; | |
50 | Grabbed = false; | |
51 | } | |
52 | local Touche = {char.Name, } | |
53 | ---------------------------------------------------- | |
54 | function lerp(a, b, t) -- Linear interpolation | |
55 | return a + (b - a)*t | |
56 | end | |
57 | ||
58 | function slerp(a, b, t) --Spherical interpolation | |
59 | dot = a:Dot(b) | |
60 | if dot > 0.99999 or dot < -0.99999 then | |
61 | return t <= 0.5 and a or b | |
62 | else | |
63 | r = math.acos(dot) | |
64 | return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r) | |
65 | end | |
66 | end | |
67 | ||
68 | function matrixInterpolate(a, b, t) | |
69 | local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components() | |
70 | local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components() | |
71 | local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position | |
72 | local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right | |
73 | local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up | |
74 | local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back | |
75 | local t = v1:Dot(v2) | |
76 | if not (t < 0 or t == 0 or t > 0) then -- Failsafe | |
77 | return CFrame.new() | |
78 | end | |
79 | return CFrame.new( | |
80 | v0.x, v0.y, v0.z, | |
81 | v1.x, v1.y, v1.z, | |
82 | v2.x, v2.y, v2.z, | |
83 | v3.x, v3.y, v3.z) | |
84 | end | |
85 | ---------------------------------------------------- | |
86 | function genWeld(a,b) | |
87 | local w = Instance.new("Weld",a) | |
88 | w.Part0 = a | |
89 | w.Part1 = b | |
90 | return w | |
91 | end | |
92 | function weld(a, b) | |
93 | local weld = Instance.new("Weld") | |
94 | weld.Name = "W" | |
95 | weld.Part0 = a | |
96 | weld.Part1 = b | |
97 | weld.C0 = a.CFrame:inverse() * b.CFrame | |
98 | weld.Parent = a | |
99 | return weld; | |
100 | end | |
101 | ---------------------------------------------------- | |
102 | function Lerp(c1,c2,al) | |
103 | local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()} | |
104 | local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()} | |
105 | for i,v in pairs(com1) do | |
106 | com1[i] = v+(com2[i]-v)*al | |
107 | end | |
108 | return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1))) | |
109 | end | |
110 | ---------------------------------------------------- | |
111 | newWeld = function(wp0, wp1, wc0x, wc0y, wc0z) | |
112 | local wld = Instance.new("Weld", wp1) | |
113 | wld.Part0 = wp0 | |
114 | wld.Part1 = wp1 | |
115 | wld.C0 = CFrame.new(wc0x, wc0y, wc0z) | |
116 | end | |
117 | ---------------------------------------------------- | |
118 | function Tween(a,b,c) | |
119 | return a+(b-a)*c | |
120 | end | |
121 | ---------------------------------------------------- | |
122 | function nwPrt(prnt,siz,cf,col) | |
123 | local prt=Instance.new("Part") | |
124 | prt.Parent=prnt | |
125 | prt.FormFactor=3 | |
126 | prt.Name="Part" | |
127 | prt.Size=siz | |
128 | prt.CanCollide=false | |
129 | prt.Anchored=true | |
130 | prt.Locked=true | |
131 | prt.TopSurface=10 | |
132 | prt.BottomSurface=10 | |
133 | prt.FrontSurface=10 | |
134 | prt.BackSurface=10 | |
135 | prt.LeftSurface=10 | |
136 | prt.RightSurface=10 | |
137 | prt:BreakJoints() | |
138 | prt.CFrame=cf or CFrame.new(30,10,30) | |
139 | prt.Material="Neon" | |
140 | prt.BrickColor=BrickColor.new(col) | |
141 | m=Instance.new("SpecialMesh",prt) | |
142 | m.MeshType=6 | |
143 | return prt | |
144 | end | |
145 | ---------------------------------------------------- | |
146 | function nwSnd(prnt,pch,vol,id) | |
147 | local s=Instance.new("Sound",prnt) | |
148 | s.Pitch=pch | |
149 | s.Volume=vol | |
150 | s.SoundId="rbxassetid://"..id | |
151 | s.PlayOnRemove=true | |
152 | return s | |
153 | end | |
154 | ---------------------------------------------------- | |
155 | function newRay(start,face,range,wat) | |
156 | local rey=Ray.new(start.p,(face.p-start.p).Unit*range) | |
157 | hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat) | |
158 | return rey,hit,pos | |
159 | end | |
160 | ---------------------------------------------------- | |
161 | for i,v in pairs(char:children()) do | |
162 | if v:IsA("Hat") then | |
163 | v:Destroy() | |
164 | end | |
165 | end | |
166 | for i,v in pairs(hed:children()) do | |
167 | if v:IsA("Sound") then | |
168 | v:Destroy() | |
169 | end | |
170 | end | |
171 | ---------------------------------------------------- | |
172 | function HasntTouched(plrname) | |
173 | local ret = true | |
174 | for _, v in pairs(Touche) do | |
175 | if v == plrname then | |
176 | ret = false | |
177 | end | |
178 | end | |
179 | return ret | |
180 | end | |
181 | ---------------------------------------------------- | |
182 | larm.Size = larm.Size * 2 | |
183 | rarm.Size = rarm.Size * 2 | |
184 | lleg.Size = lleg.Size * 2 | |
185 | rleg.Size = rleg.Size * 2 | |
186 | torso.Size = torso.Size * 2 | |
187 | hed.Size = hed.Size * 2 | |
188 | root.Size = root.Size * 2 | |
189 | ---------------------------------------------------- | |
190 | newWeld(torso, larm, -1.5, 0.5, 0) | |
191 | larm.Weld.C1 = CFrame.new(0, 0.5, 0) | |
192 | newWeld(torso, rarm, 1.5, 0.5, 0) | |
193 | rarm.Weld.C1 = CFrame.new(0, 0.5, 0) | |
194 | newWeld(torso, hed, 0, 1.5, 0) | |
195 | newWeld(torso, lleg, -0.5, -1, 0) | |
196 | lleg.Weld.C1 = CFrame.new(0, 1, 0) | |
197 | newWeld(torso, rleg, 0.5, -1, 0) | |
198 | rleg.Weld.C1 = CFrame.new(0, 1, 0) | |
199 | newWeld(root, torso, 0, -1, 0) | |
200 | torso.Weld.C1 = CFrame.new(0, -1, 0) | |
201 | ---------------------------------------------------- | |
202 | hed.face.Texture = "rbxassetid://272299908" | |
203 | z=Instance.new('Decal',hed) | |
204 | z.Face = 'Front' | |
205 | z.Texture='rbxassetid://99174105' | |
206 | z1=Instance.new('Decal',hed) | |
207 | z1.Face = 'Right' | |
208 | - | hed.BrickColor = BrickColor.new("Really black") |
208 | + | hed.BrickColor = BrickColor.new("Lime green") |
209 | lite = Instance.new("PointLight", torso) | |
210 | lite.Brightness = 14 | |
211 | lite.Range = 10 | |
212 | lite.Color = Color3.new(1, 0, 0) | |
213 | --[[local hed2 = hed:Clone() | |
214 | hed2.CanCollide = false | |
215 | hed2.Parent = char | |
216 | hed2:ClearAllChildren() | |
217 | hed2.Transparency = 1 | |
218 | hed2.Name = "DARP" | |
219 | local w = Instance.new("Weld",hed2) | |
220 | w.Part0 = hed | |
221 | w.Part1 = hed2 | |
222 | w.C0 = CFrame.new(0,0,-0.175) | |
223 | z=Instance.new("SurfaceGui",hed2) | |
224 | z.Enabled = true | |
225 | z.Face = "Front" | |
226 | z.Adornee = hed2 | |
227 | z.CanvasSize = Vector2.new(100,100) | |
228 | local face = Instance.new("ImageLabel",z) | |
229 | face.Size = UDim2.new(1,-30,1,0) | |
230 | face.Position = UDim2.new(0,15,0,0) | |
231 | face.BackgroundTransparency = 1 | |
232 | face.Image='rbxassetid://46282671']]-- | |
233 | ---------------------------------------------------- | |
234 | z = Instance.new("Sound", char) | |
235 | z.SoundId = "rbxassetid://303570180"--242463565 | |
236 | z.Looped = true | |
237 | z.Pitch = .6 | |
238 | z.Volume = 1 | |
239 | wait(.01) | |
240 | z:Play() | |
241 | ---------------------------------------------------- | |
242 | local l = game.Lighting | |
243 | local sky = Instance.new("Sky",l) | |
244 | sky.CelestialBodiesShown = false | |
245 | sky.SkyboxBk = "http://www.roblox.com/asset/?id=156925041" | |
246 | sky.SkyboxDn = "http://www.roblox.com/asset/?id=156925047" | |
247 | sky.SkyboxFt = "http://www.roblox.com/asset/?id=156925045" | |
248 | sky.SkyboxLf = "http://www.roblox.com/asset/?id=156925043" | |
249 | sky.SkyboxRt = "http://www.roblox.com/asset/?id=156925038" | |
250 | sky.SkyboxUp = "http://www.roblox.com/asset/?id=156925055" | |
251 | sky.StarCount = 0 | |
252 | sky.Name = "GreenSpace" | |
253 | ---------------------------------------------------- | |
254 | local m = Instance.new("Model") | |
255 | m.Name = "Absolution" | |
256 | p1 = Instance.new("Part", m) | |
257 | p1.BrickColor = BrickColor.new("Bright blue") | |
258 | p1.Material = "Neon" | |
259 | p1.FormFactor = Enum.FormFactor.Custom | |
260 | p1.Size = Vector3.new(1, 0.600000024, 1.5) | |
261 | p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395) | |
262 | p1.CanCollide = false | |
263 | p1.Locked = true | |
264 | p1.Elasticity = 0 | |
265 | p1.BottomSurface = Enum.SurfaceType.Smooth | |
266 | p1.TopSurface = Enum.SurfaceType.Smooth | |
267 | b1 = Instance.new("SpecialMesh", p1) | |
268 | b1.MeshType = Enum.MeshType.Wedge | |
269 | b1.Name = "Mesh" | |
270 | b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928) | |
271 | p2 = Instance.new("Part", m) | |
272 | - | p2.BrickColor = BrickColor.new("Really black") |
272 | + | p2.BrickColor = BrickColor.new("Lime green") |
273 | p2.FormFactor = Enum.FormFactor.Custom | |
274 | p2.Size = Vector3.new(1, 2.9000001, 1) | |
275 | p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005) | |
276 | p2.CanCollide = false | |
277 | p2.Locked = true | |
278 | p2.Elasticity = 0 | |
279 | p2.BottomSurface = Enum.SurfaceType.Smooth | |
280 | p2.TopSurface = Enum.SurfaceType.Smooth | |
281 | b2 = Instance.new("BlockMesh", p2) | |
282 | b2.Name = "Mesh" | |
283 | b2.Scale = Vector3.new(0.400000006, 1, 0.400000006) | |
284 | p3 = Instance.new("Part", m) | |
285 | p3.BrickColor = BrickColor.new("Bright blue") | |
286 | p3.Material = "Neon" | |
287 | p3.FormFactor = Enum.FormFactor.Custom | |
288 | p3.Size = Vector3.new(1, 1.20000005, 2.0999999) | |
289 | p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501) | |
290 | p3.CanCollide = false | |
291 | p3.Locked = true | |
292 | p3.Elasticity = 0 | |
293 | p3.BottomSurface = Enum.SurfaceType.Smooth | |
294 | p3.TopSurface = Enum.SurfaceType.Smooth | |
295 | b3 = Instance.new("SpecialMesh", p3) | |
296 | b3.MeshType = Enum.MeshType.Wedge | |
297 | b3.Name = "Mesh" | |
298 | b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928) | |
299 | p4 = Instance.new("Part", m) | |
300 | p4.BrickColor = BrickColor.new("Bright blue") | |
301 | p4.Material = "Neon" | |
302 | p4.FormFactor = Enum.FormFactor.Custom | |
303 | p4.Size = Vector3.new(1, 1.43999994, 2.05000019) | |
304 | p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151) | |
305 | p4.CanCollide = false | |
306 | p4.Locked = true | |
307 | p4.Elasticity = 0 | |
308 | p4.BottomSurface = Enum.SurfaceType.Smooth | |
309 | p4.TopSurface = Enum.SurfaceType.Smooth | |
310 | b4 = Instance.new("SpecialMesh", p4) | |
311 | b4.MeshType = Enum.MeshType.Wedge | |
312 | b4.Name = "Mesh" | |
313 | b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988) | |
314 | p5 = Instance.new("Part", m) | |
315 | p5.BrickColor = BrickColor.new("Bright blue") | |
316 | p5.Material = "Neon" | |
317 | p5.FormFactor = Enum.FormFactor.Custom | |
318 | p5.Size = Vector3.new(1, 1.20000005, 3.20000005) | |
319 | p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246) | |
320 | p5.CanCollide = false | |
321 | p5.Locked = true | |
322 | p5.Elasticity = 0 | |
323 | p5.BottomSurface = Enum.SurfaceType.Smooth | |
324 | p5.TopSurface = Enum.SurfaceType.Smooth | |
325 | b5 = Instance.new("SpecialMesh", p5) | |
326 | b5.MeshType = Enum.MeshType.Wedge | |
327 | b5.Name = "Mesh" | |
328 | b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928) | |
329 | p6 = Instance.new("Part", m) | |
330 | p6.Name = "Handle" | |
331 | - | p6.BrickColor = BrickColor.new("Really black") |
331 | + | p6.BrickColor = BrickColor.new("Lime green") |
332 | p6.FormFactor = Enum.FormFactor.Custom | |
333 | p6.Size = Vector3.new(1.5999999, 13.6000004, 1) | |
334 | p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005) | |
335 | p6.CanCollide = false | |
336 | p6.Locked = true | |
337 | p6.Elasticity = 0 | |
338 | p6.BottomSurface = Enum.SurfaceType.Smooth | |
339 | p6.TopSurface = Enum.SurfaceType.Smooth | |
340 | b6 = Instance.new("BlockMesh", p6) | |
341 | b6.Name = "Mesh" | |
342 | b6.Scale = Vector3.new(0.400000006, 1, 0.400000006) | |
343 | p7 = Instance.new("Part", m) | |
344 | p7.BrickColor = BrickColor.new("Bright blue") | |
345 | p7.Material = "Neon" | |
346 | p7.FormFactor = Enum.FormFactor.Custom | |
347 | p7.Size = Vector3.new(1, 1.00999999, 1.05000019) | |
348 | p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818) | |
349 | p7.CanCollide = false | |
350 | p7.Locked = true | |
351 | p7.Elasticity = 0 | |
352 | p7.BottomSurface = Enum.SurfaceType.Smooth | |
353 | p7.TopSurface = Enum.SurfaceType.Smooth | |
354 | b7 = Instance.new("SpecialMesh", p7) | |
355 | b7.MeshType = Enum.MeshType.Wedge | |
356 | b7.Name = "Mesh" | |
357 | b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988) | |
358 | p8 = Instance.new("Part", m) | |
359 | p8.BrickColor = BrickColor.new("Bright blue") | |
360 | p8.Material = "Neon" | |
361 | p8.FormFactor = Enum.FormFactor.Custom | |
362 | p8.Size = Vector3.new(1, 1.00999999, 1.05000019) | |
363 | p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699) | |
364 | p8.CanCollide = false | |
365 | p8.Locked = true | |
366 | p8.Elasticity = 0 | |
367 | p8.BottomSurface = Enum.SurfaceType.Smooth | |
368 | p8.TopSurface = Enum.SurfaceType.Smooth | |
369 | b8 = Instance.new("SpecialMesh", p8) | |
370 | b8.MeshType = Enum.MeshType.Wedge | |
371 | b8.Name = "Mesh" | |
372 | b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988) | |
373 | p9 = Instance.new("Part", m) | |
374 | - | p9.BrickColor = BrickColor.new("Really black") |
374 | + | p9.BrickColor = BrickColor.new("Lime green") |
375 | p9.FormFactor = Enum.FormFactor.Custom | |
376 | p9.Size = Vector3.new(1, 1.07999957, 1) | |
377 | p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005) | |
378 | p9.CanCollide = false | |
379 | p9.Locked = true | |
380 | p9.Elasticity = 0 | |
381 | p9.BottomSurface = Enum.SurfaceType.Smooth | |
382 | p9.TopSurface = Enum.SurfaceType.Smooth | |
383 | b9 = Instance.new("BlockMesh", p9) | |
384 | b9.Name = "Mesh" | |
385 | b9.Scale = Vector3.new(0.550000012, 1, 0.550000012) | |
386 | p10 = Instance.new("Part", m) | |
387 | - | p10.BrickColor = BrickColor.new("Really black") |
387 | + | p10.BrickColor = BrickColor.new("Lime green") |
388 | p10.FormFactor = Enum.FormFactor.Custom | |
389 | p10.Size = Vector3.new(1, 1.41999948, 1) | |
390 | p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005) | |
391 | p10.CanCollide = false | |
392 | p10.Locked = true | |
393 | p10.Elasticity = 0 | |
394 | p10.BottomSurface = Enum.SurfaceType.Smooth | |
395 | p10.TopSurface = Enum.SurfaceType.Smooth | |
396 | b10 = Instance.new("BlockMesh", p10) | |
397 | b10.Name = "Mesh" | |
398 | b10.Scale = Vector3.new(0.400000006, 1, 0.400000006) | |
399 | p11 = Instance.new("Part", m) | |
400 | - | p11.BrickColor = BrickColor.new("Really black") |
400 | + | p11.BrickColor = BrickColor.new("Lime green") |
401 | p11.FormFactor = Enum.FormFactor.Custom | |
402 | p11.Size = Vector3.new(1, 1.50999951, 1) | |
403 | p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005) | |
404 | p11.CanCollide = false | |
405 | p11.Locked = true | |
406 | p11.Elasticity = 0 | |
407 | p11.BottomSurface = Enum.SurfaceType.Smooth | |
408 | p11.TopSurface = Enum.SurfaceType.Smooth | |
409 | b11 = Instance.new("BlockMesh", p11) | |
410 | b11.Name = "Mesh" | |
411 | b11.Scale = Vector3.new(0.550000012, 1, 0.550000012) | |
412 | p12 = Instance.new("Part", m) | |
413 | p12.Name = "BladeCenter" | |
414 | p12.BrickColor = BrickColor.new("Dark stone grey") | |
415 | p12.Material = Enum.Material.Concrete | |
416 | p12.FormFactor = Enum.FormFactor.Symmetric | |
417 | p12.Size = Vector3.new(1, 2, 2) | |
418 | p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005) | |
419 | p12.CanCollide = false | |
420 | p12.Locked = true | |
421 | p12.BottomSurface = Enum.SurfaceType.Smooth | |
422 | p12.TopSurface = Enum.SurfaceType.Smooth | |
423 | b12 = Instance.new("SpecialMesh", p12) | |
424 | b12.MeshType = Enum.MeshType.Brick | |
425 | b12.Name = "Mesh" | |
426 | b12.Scale = Vector3.new(0.499999911, 1, 0.699999928) | |
427 | p13 = Instance.new("Part", m) | |
428 | - | p13.BrickColor = BrickColor.new("Really black") |
428 | + | p13.BrickColor = BrickColor.new("Lime green") |
429 | p13.FormFactor = Enum.FormFactor.Custom | |
430 | p13.Size = Vector3.new(2.91000009, 4.3300004, 1) | |
431 | p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005) | |
432 | p13.CanCollide = false | |
433 | p13.Locked = true | |
434 | p13.Elasticity = 0 | |
435 | p13.BottomSurface = Enum.SurfaceType.Smooth | |
436 | p13.TopSurface = Enum.SurfaceType.Smooth | |
437 | b13 = Instance.new("BlockMesh", p13) | |
438 | b13.Name = "Mesh" | |
439 | b13.Scale = Vector3.new(1, 1, 0.400000006) | |
440 | p14 = Instance.new("Part", m) | |
441 | - | p14.BrickColor = BrickColor.new("Really black") |
441 | + | p14.BrickColor = BrickColor.new("Lime green") |
442 | p14.FormFactor = Enum.FormFactor.Custom | |
443 | p14.Size = Vector3.new(2.5, 2.17999935, 1) | |
444 | p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005) | |
445 | p14.CanCollide = false | |
446 | p14.Locked = true | |
447 | p14.Elasticity = 0 | |
448 | p14.BottomSurface = Enum.SurfaceType.Smooth | |
449 | p14.TopSurface = Enum.SurfaceType.Smooth | |
450 | b14 = Instance.new("BlockMesh", p14) | |
451 | b14.Name = "Mesh" | |
452 | b14.Scale = Vector3.new(0.400000006, 1, 0.400000006) | |
453 | p15 = Instance.new("Part", m) | |
454 | - | p15.BrickColor = BrickColor.new("Really black") |
454 | + | p15.BrickColor = BrickColor.new("Lime green") |
455 | p15.FormFactor = Enum.FormFactor.Custom | |
456 | p15.Size = Vector3.new(1.16999996, 4.2699995, 1) | |
457 | p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005) | |
458 | p15.CanCollide = false | |
459 | p15.Locked = true | |
460 | p15.Elasticity = 0 | |
461 | p15.BottomSurface = Enum.SurfaceType.Smooth | |
462 | p15.TopSurface = Enum.SurfaceType.Smooth | |
463 | b15 = Instance.new("BlockMesh", p15) | |
464 | b15.Name = "Mesh" | |
465 | b15.Scale = Vector3.new(1, 1, 0.400000006) | |
466 | p16 = Instance.new("Part", m) | |
467 | - | p16.BrickColor = BrickColor.new("Really black") |
467 | + | p16.BrickColor = BrickColor.new("Lime green") |
468 | p16.FormFactor = Enum.FormFactor.Custom | |
469 | p16.Size = Vector3.new(1.68999994, 4.76000023, 1) | |
470 | p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005) | |
471 | p16.CanCollide = false | |
472 | p16.Locked = true | |
473 | p16.Elasticity = 0 | |
474 | p16.BottomSurface = Enum.SurfaceType.Smooth | |
475 | p16.TopSurface = Enum.SurfaceType.Smooth | |
476 | b16 = Instance.new("BlockMesh", p16) | |
477 | b16.Name = "Mesh" | |
478 | b16.Scale = Vector3.new(1, 1, 0.400000006) | |
479 | p17 = Instance.new("Part", m) | |
480 | - | p17.BrickColor = BrickColor.new("Really black") |
480 | + | p17.BrickColor = BrickColor.new("Lime green") |
481 | p17.FormFactor = Enum.FormFactor.Custom | |
482 | p17.Size = Vector3.new(1.78999996, 4.21999979, 1) | |
483 | p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005) | |
484 | p17.CanCollide = false | |
485 | p17.Locked = true | |
486 | p17.Elasticity = 0 | |
487 | p17.BottomSurface = Enum.SurfaceType.Smooth | |
488 | p17.TopSurface = Enum.SurfaceType.Smooth | |
489 | b17 = Instance.new("BlockMesh", p17) | |
490 | b17.Name = "Mesh" | |
491 | b17.Scale = Vector3.new(1, 1, 0.400000006) | |
492 | p18 = Instance.new("WedgePart", m) | |
493 | p18.BrickColor = BrickColor.new("Dark stone grey") | |
494 | p18.Name = "BladePart1" | |
495 | p18.Material = Enum.Material.Concrete | |
496 | p18.Name = "Wedge" | |
497 | p18.FormFactor = Enum.FormFactor.Symmetric | |
498 | p18.Size = Vector3.new(1, 4, 2) | |
499 | p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005) | |
500 | p18.CanCollide = false | |
501 | p18.Locked = true | |
502 | p18.BottomSurface = Enum.SurfaceType.Smooth | |
503 | p18.TopSurface = Enum.SurfaceType.Smooth | |
504 | b18 = Instance.new("SpecialMesh", p18) | |
505 | b18.MeshType = Enum.MeshType.Wedge | |
506 | b18.Name = "Mesh" | |
507 | b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928) | |
508 | p19 = Instance.new("WedgePart", m) | |
509 | p19.BrickColor = BrickColor.new("Dark stone grey") | |
510 | p19.Name = "BladePart2" | |
511 | p19.Material = Enum.Material.Concrete | |
512 | p19.Name = "Wedge" | |
513 | p19.FormFactor = Enum.FormFactor.Symmetric | |
514 | p19.Size = Vector3.new(1, 4, 2) | |
515 | p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005) | |
516 | p19.CanCollide = false | |
517 | p19.Locked = true | |
518 | p19.BottomSurface = Enum.SurfaceType.Smooth | |
519 | p19.TopSurface = Enum.SurfaceType.Smooth | |
520 | b19 = Instance.new("SpecialMesh", p19) | |
521 | b19.MeshType = Enum.MeshType.Wedge | |
522 | b19.Name = "Mesh" | |
523 | b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928) | |
524 | p20 = Instance.new("Part", m) | |
525 | - | p20.BrickColor = BrickColor.new("Really black") |
525 | + | p20.BrickColor = BrickColor.new("Lime green") |
526 | p20.FormFactor = Enum.FormFactor.Custom | |
527 | p20.Size = Vector3.new(2.53000021, 2.39999938, 1) | |
528 | p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005) | |
529 | p20.CanCollide = false | |
530 | p20.Locked = true | |
531 | p20.Elasticity = 0 | |
532 | p20.BottomSurface = Enum.SurfaceType.Smooth | |
533 | p20.TopSurface = Enum.SurfaceType.Smooth | |
534 | b20 = Instance.new("BlockMesh", p20) | |
535 | b20.Name = "Mesh" | |
536 | b20.Scale = Vector3.new(0.400000006, 1, 0.400000006) | |
537 | p21 = Instance.new("Part", m) | |
538 | p21.BrickColor = BrickColor.new("Bright blue") | |
539 | p21.Material = "Neon" | |
540 | p21.FormFactor = Enum.FormFactor.Custom | |
541 | p21.Size = Vector3.new(1, 1.43999994, 1.59000015) | |
542 | p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025) | |
543 | p21.CanCollide = false | |
544 | p21.Locked = true | |
545 | p21.Elasticity = 0 | |
546 | p21.BottomSurface = Enum.SurfaceType.Smooth | |
547 | p21.TopSurface = Enum.SurfaceType.Smooth | |
548 | b21 = Instance.new("SpecialMesh", p21) | |
549 | b21.MeshType = Enum.MeshType.Wedge | |
550 | b21.Name = "Mesh" | |
551 | b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988) | |
552 | w1 = Instance.new("Weld", p1) | |
553 | w1.Name = "Part_Weld" | |
554 | w1.Part0 = p1 | |
555 | w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252) | |
556 | w1.Part1 = p2 | |
557 | w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008) | |
558 | w2 = Instance.new("Weld", p2) | |
559 | w2.Name = "Part_Weld" | |
560 | w2.Part0 = p2 | |
561 | w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008) | |
562 | w2.Part1 = p3 | |
563 | w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105) | |
564 | w3 = Instance.new("Weld", p3) | |
565 | w3.Name = "Part_Weld" | |
566 | w3.Part0 = p3 | |
567 | w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105) | |
568 | w3.Part1 = p4 | |
569 | w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637) | |
570 | w4 = Instance.new("Weld", p4) | |
571 | w4.Name = "Part_Weld" | |
572 | w4.Part0 = p4 | |
573 | w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637) | |
574 | w4.Part1 = p5 | |
575 | w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252) | |
576 | w5 = Instance.new("Weld", p5) | |
577 | w5.Name = "Part_Weld" | |
578 | w5.Part0 = p5 | |
579 | w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252) | |
580 | w5.Part1 = p6 | |
581 | w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015) | |
582 | w6 = Instance.new("Weld", p6) | |
583 | w6.Name = "Part_Weld" | |
584 | w6.Part0 = p6 | |
585 | w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015) | |
586 | w6.Part1 = p7 | |
587 | w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088) | |
588 | w7 = Instance.new("Weld", p7) | |
589 | w7.Name = "Part_Weld" | |
590 | w7.Part0 = p7 | |
591 | w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088) | |
592 | w7.Part1 = p8 | |
593 | w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088) | |
594 | w8 = Instance.new("Weld", p8) | |
595 | w8.Name = "Part_Weld" | |
596 | w8.Part0 = p8 | |
597 | w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088) | |
598 | w8.Part1 = p9 | |
599 | w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005) | |
600 | w9 = Instance.new("Weld", p9) | |
601 | w9.Name = "Part_Weld" | |
602 | w9.Part0 = p9 | |
603 | w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005) | |
604 | w9.Part1 = p10 | |
605 | w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008) | |
606 | w10 = Instance.new("Weld", p10) | |
607 | w10.Name = "Part_Weld" | |
608 | w10.Part0 = p10 | |
609 | w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008) | |
610 | w10.Part1 = p11 | |
611 | w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005) | |
612 | w11 = Instance.new("Weld", p11) | |
613 | w11.Name = "Part_Weld" | |
614 | w11.Part0 = p11 | |
615 | w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005) | |
616 | w11.Part1 = p12 | |
617 | w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005) | |
618 | w12 = Instance.new("Weld", p12) | |
619 | w12.Name = "Part_Weld" | |
620 | w12.Part0 = p12 | |
621 | w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005) | |
622 | w12.Part1 = p13 | |
623 | w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008) | |
624 | w13 = Instance.new("Weld", p13) | |
625 | w13.Name = "Part_Weld" | |
626 | w13.Part0 = p13 | |
627 | w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008) | |
628 | w13.Part1 = p14 | |
629 | w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008) | |
630 | w14 = Instance.new("Weld", p14) | |
631 | w14.Name = "Part_Weld" | |
632 | w14.Part0 = p14 | |
633 | w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008) | |
634 | w14.Part1 = p15 | |
635 | w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008) | |
636 | w15 = Instance.new("Weld", p15) | |
637 | w15.Name = "Part_Weld" | |
638 | w15.Part0 = p15 | |
639 | w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008) | |
640 | w15.Part1 = p16 | |
641 | w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008) | |
642 | w16 = Instance.new("Weld", p16) | |
643 | w16.Name = "Part_Weld" | |
644 | w16.Part0 = p16 | |
645 | w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008) | |
646 | w16.Part1 = p17 | |
647 | w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008) | |
648 | w17 = Instance.new("Weld", p17) | |
649 | w17.Name = "Wedge_Weld" | |
650 | w17.Part0 = p17 | |
651 | w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008) | |
652 | w17.Part1 = p18 | |
653 | w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005) | |
654 | w18 = Instance.new("Weld", p18) | |
655 | w18.Name = "Wedge_Weld" | |
656 | w18.Part0 = p18 | |
657 | w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005) | |
658 | w18.Part1 = p19 | |
659 | w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005) | |
660 | w19 = Instance.new("Weld", p19) | |
661 | w19.Name = "Part_Weld" | |
662 | w19.Part0 = p19 | |
663 | w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005) | |
664 | w19.Part1 = p20 | |
665 | w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009) | |
666 | w20 = Instance.new("Weld", p20) | |
667 | w20.Name = "Part_Weld" | |
668 | w20.Part0 = p20 | |
669 | w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009) | |
670 | w20.Part1 = p21 | |
671 | w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637) | |
672 | m.Parent = char | |
673 | m:MakeJoints() | |
674 | ---------------------------------------------------- | |
675 | local cor = Instance.new("Part", char.Absolution) | |
676 | cor.Name = "Thingy" | |
677 | cor.Locked = true | |
678 | cor.BottomSurface = 0 | |
679 | cor.CanCollide = false | |
680 | cor.Size = Vector3.new(1, 13, 1) | |
681 | cor.Transparency = 1 | |
682 | cor.TopSurface = 0 | |
683 | corw = Instance.new("Weld", cor) | |
684 | corw.Part0 = rarm | |
685 | corw.Part1 = cor | |
686 | corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)) | |
687 | corw.C1 = CFrame.new(0, 0, 0) | |
688 | weld1 = Instance.new("Weld", char.Absolution) | |
689 | weld1.Part0 = cor | |
690 | weld1.Part1 = p6 | |
691 | weld1.C0 = CFrame.new(0, 0, 0) | |
692 | ---------------------------------------------------- | |
693 | hitb = Instance.new("Part", char.Absolution) | |
694 | hitb.Name = "Thingy2" | |
695 | hitb.Locked = true | |
696 | hitb.BottomSurface = 0 | |
697 | hitb.CanCollide = false | |
698 | hitb.Size = Vector3.new(0, 8, 6) | |
699 | hitb.Transparency = 1 | |
700 | hitb.TopSurface = 0 | |
701 | weld2 = Instance.new("Weld", char.Absolution) | |
702 | weld2.Part0 = hitb | |
703 | weld2.Part1 = p12 | |
704 | weld2.C0 = CFrame.new(0, .6, 1) | |
705 | ---------------------------------------------------- | |
706 | local m = Instance.new("Model") | |
707 | m.Name = "Claw" | |
708 | p1 = Instance.new("Part", m) | |
709 | - | p1.BrickColor = BrickColor.new("Really black") |
709 | + | p1.BrickColor = BrickColor.new("Lime green") |
710 | p1.FormFactor = Enum.FormFactor.Custom | |
711 | p1.Size = Vector3.new(1.5, 0.5, 0.5) | |
712 | p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691) | |
713 | p1.CanCollide = false | |
714 | p1.Locked = true | |
715 | p1.BottomSurface = Enum.SurfaceType.Smooth | |
716 | p1.TopSurface = Enum.SurfaceType.Smooth | |
717 | b1 = Instance.new("BlockMesh", p1) | |
718 | b1.Name = "Mesh" | |
719 | p2 = Instance.new("WedgePart", m) | |
720 | - | p2.BrickColor = BrickColor.new("Really black") |
720 | + | p2.BrickColor = BrickColor.new("Lime green") |
721 | p2.Name = "Wedge" | |
722 | p2.FormFactor = Enum.FormFactor.Custom | |
723 | p2.Size = Vector3.new(3, 1, 0.5) | |
724 | p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0) | |
725 | p2.CanCollide = false | |
726 | p2.Locked = true | |
727 | p2.BottomSurface = Enum.SurfaceType.Smooth | |
728 | p2.TopSurface = Enum.SurfaceType.Smooth | |
729 | p3 = Instance.new("Part", m) | |
730 | - | p3.BrickColor = BrickColor.new("Really black") |
730 | + | p3.BrickColor = BrickColor.new("Lime green") |
731 | p3.FormFactor = Enum.FormFactor.Custom | |
732 | p3.Size = Vector3.new(1.5, 0.5, 0.5) | |
733 | p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008) | |
734 | p3.CanCollide = false | |
735 | p3.Locked = true | |
736 | p3.BottomSurface = Enum.SurfaceType.Smooth | |
737 | p3.TopSurface = Enum.SurfaceType.Smooth | |
738 | b2 = Instance.new("BlockMesh", p3) | |
739 | b2.Name = "Mesh" | |
740 | p4 = Instance.new("WedgePart", m) | |
741 | - | p4.BrickColor = BrickColor.new("Really black") |
741 | + | p4.BrickColor = BrickColor.new("Lime green") |
742 | p4.Name = "Wedge" | |
743 | p4.FormFactor = Enum.FormFactor.Custom | |
744 | p4.Size = Vector3.new(3, 1, 0.5) | |
745 | p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008) | |
746 | p4.CanCollide = false | |
747 | p4.Locked = true | |
748 | p4.BottomSurface = Enum.SurfaceType.Smooth | |
749 | p4.TopSurface = Enum.SurfaceType.Smooth | |
750 | p5 = Instance.new("Part", m) | |
751 | - | p5.BrickColor = BrickColor.new("Really black") |
751 | + | p5.BrickColor = BrickColor.new("Lime green") |
752 | p5.FormFactor = Enum.FormFactor.Custom | |
753 | p5.Size = Vector3.new(1.5, 0.5, 0.5) | |
754 | p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008) | |
755 | p5.CanCollide = false | |
756 | p5.Locked = true | |
757 | p5.BottomSurface = Enum.SurfaceType.Smooth | |
758 | p5.TopSurface = Enum.SurfaceType.Smooth | |
759 | b3 = Instance.new("BlockMesh", p5) | |
760 | b3.Name = "Mesh" | |
761 | p6 = Instance.new("Part", m) | |
762 | - | p6.BrickColor = BrickColor.new("Really black") |
762 | + | p6.BrickColor = BrickColor.new("Lime green") |
763 | p6.FormFactor = Enum.FormFactor.Custom | |
764 | p6.Size = Vector3.new(1.5, 0.5, 0.5) | |
765 | p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051) | |
766 | p6.CanCollide = false | |
767 | p6.Locked = true | |
768 | p6.BottomSurface = Enum.SurfaceType.Smooth | |
769 | p6.TopSurface = Enum.SurfaceType.Smooth | |
770 | b4 = Instance.new("BlockMesh", p6) | |
771 | b4.Name = "Mesh" | |
772 | p7 = Instance.new("Part", m) | |
773 | - | p7.BrickColor = BrickColor.new("Really black") |
773 | + | p7.BrickColor = BrickColor.new("Lime green") |
774 | p7.FormFactor = Enum.FormFactor.Custom | |
775 | p7.Size = Vector3.new(3, 1, 1.20000005) | |
776 | p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008) | |
777 | p7.CanCollide = false | |
778 | p7.Locked = true | |
779 | p7.BottomSurface = Enum.SurfaceType.Smooth | |
780 | p7.TopSurface = Enum.SurfaceType.Smooth | |
781 | b5 = Instance.new("BlockMesh", p7) | |
782 | b5.Name = "Mesh" | |
783 | p8 = Instance.new("Part", m) | |
784 | p8.BrickColor = BrickColor.new("Bright blue") | |
785 | p8.Material = "Neon" | |
786 | p8.FormFactor = Enum.FormFactor.Symmetric | |
787 | p8.Size = Vector3.new(1, 1, 1) | |
788 | p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159) | |
789 | p8.CanCollide = false | |
790 | p8.Locked = true | |
791 | b6 = Instance.new("SpecialMesh", p8) | |
792 | b6.MeshId = "http://www.roblox.com/Asset/?id=9756362" | |
793 | b6.TextureId = "" | |
794 | b6.MeshType = Enum.MeshType.FileMesh | |
795 | b6.Name = "Mesh" | |
796 | b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988) | |
797 | p9 = Instance.new("Part", m) | |
798 | - | p9.BrickColor = BrickColor.new("Really black") |
798 | + | p9.BrickColor = BrickColor.new("Lime green") |
799 | p9.FormFactor = Enum.FormFactor.Custom | |
800 | p9.Size = Vector3.new(1.5, 0.5, 0.5) | |
801 | p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264) | |
802 | p9.CanCollide = false | |
803 | p9.Locked = true | |
804 | p9.BottomSurface = Enum.SurfaceType.Smooth | |
805 | p9.TopSurface = Enum.SurfaceType.Smooth | |
806 | b7 = Instance.new("BlockMesh", p9) | |
807 | b7.Name = "Mesh" | |
808 | p10 = Instance.new("Part", m) | |
809 | p10.BrickColor = BrickColor.new("Bright blue") | |
810 | p10.Material = "Neon" | |
811 | p10.FormFactor = Enum.FormFactor.Symmetric | |
812 | p10.Size = Vector3.new(1, 1, 1) | |
813 | p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702) | |
814 | p10.CanCollide = false | |
815 | p10.Locked = true | |
816 | b8 = Instance.new("SpecialMesh", p10) | |
817 | b8.MeshId = "http://www.roblox.com/Asset/?id=9756362" | |
818 | b8.TextureId = "" | |
819 | b8.MeshType = Enum.MeshType.FileMesh | |
820 | b8.Name = "Mesh" | |
821 | b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988) | |
822 | p11 = Instance.new("Part", m) | |
823 | - | p11.BrickColor = BrickColor.new("Really black") |
823 | + | p11.BrickColor = BrickColor.new("Lime green") |
824 | p11.FormFactor = Enum.FormFactor.Custom | |
825 | p11.Size = Vector3.new(1.5, 0.5, 0.5) | |
826 | p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868) | |
827 | p11.CanCollide = false | |
828 | p11.Locked = true | |
829 | p11.BottomSurface = Enum.SurfaceType.Smooth | |
830 | p11.TopSurface = Enum.SurfaceType.Smooth | |
831 | b9 = Instance.new("BlockMesh", p11) | |
832 | b9.Name = "Mesh" | |
833 | p12 = Instance.new("Part", m) | |
834 | - | p12.BrickColor = BrickColor.new("Really black") |
834 | + | p12.BrickColor = BrickColor.new("Lime green") |
835 | p12.FormFactor = Enum.FormFactor.Custom | |
836 | p12.Size = Vector3.new(1.5, 0.5, 0.5) | |
837 | p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008) | |
838 | p12.CanCollide = false | |
839 | p12.Locked = true | |
840 | p12.BottomSurface = Enum.SurfaceType.Smooth | |
841 | p12.TopSurface = Enum.SurfaceType.Smooth | |
842 | b10 = Instance.new("BlockMesh", p12) | |
843 | b10.Name = "Mesh" | |
844 | p13 = Instance.new("Part", m) | |
845 | - | p13.BrickColor = BrickColor.new("Really black") |
845 | + | p13.BrickColor = BrickColor.new("Lime green") |
846 | p13.FormFactor = Enum.FormFactor.Custom | |
847 | p13.Size = Vector3.new(1.5, 0.5, 0.5) | |
848 | p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008) | |
849 | p13.CanCollide = false | |
850 | p13.Locked = true | |
851 | p13.BottomSurface = Enum.SurfaceType.Smooth | |
852 | p13.TopSurface = Enum.SurfaceType.Smooth | |
853 | b11 = Instance.new("BlockMesh", p13) | |
854 | b11.Name = "Mesh" | |
855 | p14 = Instance.new("Part", m) | |
856 | p14.BrickColor = BrickColor.new("Bright blue") | |
857 | p14.Material = "Neon" | |
858 | p14.FormFactor = Enum.FormFactor.Symmetric | |
859 | p14.Size = Vector3.new(1, 1, 1) | |
860 | p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777) | |
861 | p14.CanCollide = false | |
862 | p14.Locked = true | |
863 | b12 = Instance.new("SpecialMesh", p14) | |
864 | b12.MeshId = "http://www.roblox.com/Asset/?id=9756362" | |
865 | b12.TextureId = "" | |
866 | b12.MeshType = Enum.MeshType.FileMesh | |
867 | b12.Name = "Mesh" | |
868 | b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988) | |
869 | p15 = Instance.new("Part", m) | |
870 | p15.BrickColor = BrickColor.new("Medium stone grey") | |
871 | p15.Transparency = 1 | |
872 | p15.Name = "ArmPart" | |
873 | p15.FormFactor = Enum.FormFactor.Custom | |
874 | p15.Size = Vector3.new(2, 1, 1) | |
875 | p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008) | |
876 | p15.CanCollide = false | |
877 | p15.Locked = true | |
878 | p15.BottomSurface = Enum.SurfaceType.Smooth | |
879 | p15.TopSurface = Enum.SurfaceType.Smooth | |
880 | b13 = Instance.new("BlockMesh", p15) | |
881 | b13.Name = "Mesh" | |
882 | p16 = Instance.new("Part", m) | |
883 | - | p16.BrickColor = BrickColor.new("Really black") |
883 | + | p16.BrickColor = BrickColor.new("Lime green") |
884 | p16.FormFactor = Enum.FormFactor.Custom | |
885 | p16.Size = Vector3.new(3, 1, 2.4000001) | |
886 | p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008) | |
887 | p16.CanCollide = false | |
888 | p16.Locked = true | |
889 | p16.BottomSurface = Enum.SurfaceType.Smooth | |
890 | p16.TopSurface = Enum.SurfaceType.Smooth | |
891 | b14 = Instance.new("BlockMesh", p16) | |
892 | b14.Name = "Mesh" | |
893 | p17 = Instance.new("Part", m) | |
894 | - | p17.BrickColor = BrickColor.new("Really black") |
894 | + | p17.BrickColor = BrickColor.new("Lime green") |
895 | p17.FormFactor = Enum.FormFactor.Custom | |
896 | p17.Size = Vector3.new(1.5, 0.5, 0.5) | |
897 | p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783) | |
898 | p17.CanCollide = false | |
899 | p17.Locked = true | |
900 | p17.BottomSurface = Enum.SurfaceType.Smooth | |
901 | p17.TopSurface = Enum.SurfaceType.Smooth | |
902 | b15 = Instance.new("BlockMesh", p17) | |
903 | b15.Name = "Mesh" | |
904 | p18 = Instance.new("Part", m) | |
905 | p18.BrickColor = BrickColor.new("Bright blue") | |
906 | p18.Material = "Neon" | |
907 | p18.FormFactor = Enum.FormFactor.Symmetric | |
908 | p18.Size = Vector3.new(1, 1, 1) | |
909 | p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101) | |
910 | p18.CanCollide = false | |
911 | p18.Locked = true | |
912 | b16 = Instance.new("SpecialMesh", p18) | |
913 | b16.MeshId = "http://www.roblox.com/Asset/?id=9756362" | |
914 | b16.TextureId = "" | |
915 | b16.MeshType = Enum.MeshType.FileMesh | |
916 | b16.Name = "Mesh" | |
917 | b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988) | |
918 | p19 = Instance.new("Part", m) | |
919 | p19.BrickColor = BrickColor.new("Bright blue") | |
920 | p19.Material = "Neon" | |
921 | p19.FormFactor = Enum.FormFactor.Symmetric | |
922 | p19.Size = Vector3.new(1, 1, 1) | |
923 | p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855) | |
924 | p19.CanCollide = false | |
925 | p19.Locked = true | |
926 | b17 = Instance.new("SpecialMesh", p19) | |
927 | b17.MeshId = "http://www.roblox.com/Asset/?id=9756362" | |
928 | b17.TextureId = "" | |
929 | b17.MeshType = Enum.MeshType.FileMesh | |
930 | b17.Name = "Mesh" | |
931 | b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988) | |
932 | p20 = Instance.new("Part", m) | |
933 | - | p20.BrickColor = BrickColor.new("Really black") |
933 | + | p20.BrickColor = BrickColor.new("Lime green") |
934 | p20.FormFactor = Enum.FormFactor.Custom | |
935 | p20.Size = Vector3.new(3, 1, 2.4000001) | |
936 | p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008) | |
937 | p20.CanCollide = false | |
938 | p20.Locked = true | |
939 | p20.BottomSurface = Enum.SurfaceType.Smooth | |
940 | p20.TopSurface = Enum.SurfaceType.Smooth | |
941 | b18 = Instance.new("BlockMesh", p20) | |
942 | b18.Name = "Mesh" | |
943 | p21 = Instance.new("Part", m) | |
944 | - | p21.BrickColor = BrickColor.new("Really black") |
944 | + | p21.BrickColor = BrickColor.new("Lime green") |
945 | p21.FormFactor = Enum.FormFactor.Custom | |
946 | p21.Size = Vector3.new(3, 1, 1.19999993) | |
947 | p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008) | |
948 | p21.CanCollide = false | |
949 | p21.Locked = true | |
950 | p21.BottomSurface = Enum.SurfaceType.Smooth | |
951 | p21.TopSurface = Enum.SurfaceType.Smooth | |
952 | b19 = Instance.new("BlockMesh", p21) | |
953 | b19.Name = "Mesh" | |
954 | p22 = Instance.new("WedgePart", m) | |
955 | - | p22.BrickColor = BrickColor.new("Really black") |
955 | + | p22.BrickColor = BrickColor.new("Lime green") |
956 | p22.Name = "Wedge" | |
957 | p22.FormFactor = Enum.FormFactor.Custom | |
958 | p22.Size = Vector3.new(3, 1, 0.5) | |
959 | p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008) | |
960 | p22.CanCollide = false | |
961 | p22.Locked = true | |
962 | p22.BottomSurface = Enum.SurfaceType.Smooth | |
963 | p22.TopSurface = Enum.SurfaceType.Smooth | |
964 | p23 = Instance.new("Part", m) | |
965 | - | p23.BrickColor = BrickColor.new("Really black") |
965 | + | p23.BrickColor = BrickColor.new("Lime green") |
966 | p23.FormFactor = Enum.FormFactor.Custom | |
967 | p23.Size = Vector3.new(1.5, 0.5, 0.5) | |
968 | p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682) | |
969 | p23.CanCollide = false | |
970 | p23.Locked = true | |
971 | p23.BottomSurface = Enum.SurfaceType.Smooth | |
972 | p23.TopSurface = Enum.SurfaceType.Smooth | |
973 | b20 = Instance.new("BlockMesh", p23) | |
974 | b20.Name = "Mesh" | |
975 | p24 = Instance.new("WedgePart", m) | |
976 | - | p24.BrickColor = BrickColor.new("Really black") |
976 | + | p24.BrickColor = BrickColor.new("Lime green") |
977 | p24.Name = "Wedge" | |
978 | p24.FormFactor = Enum.FormFactor.Custom | |
979 | p24.Size = Vector3.new(3, 1, 0.5) | |
980 | p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215) | |
981 | p24.CanCollide = false | |
982 | p24.Locked = true | |
983 | p24.BottomSurface = Enum.SurfaceType.Smooth | |
984 | p24.TopSurface = Enum.SurfaceType.Smooth | |
985 | p25 = Instance.new("Part", m) | |
986 | p25.BrickColor = BrickColor.new("Bright blue") | |
987 | p25.Material = "Neon" | |
988 | p25.FormFactor = Enum.FormFactor.Symmetric | |
989 | p25.Size = Vector3.new(1, 1, 1) | |
990 | p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466) | |
991 | p25.CanCollide = false | |
992 | p25.Locked = true | |
993 | p25.BottomSurface = Enum.SurfaceType.Smooth | |
994 | p25.TopSurface = Enum.SurfaceType.Smooth | |
995 | b21 = Instance.new("SpecialMesh", p25) | |
996 | b21.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
997 | b21.TextureId = "" | |
998 | b21.MeshType = Enum.MeshType.FileMesh | |
999 | b21.Name = "Mesh" | |
1000 | b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024) | |
1001 | p26 = Instance.new("Part", m) | |
1002 | - | p26.BrickColor = BrickColor.new("Really black") |
1002 | + | p26.BrickColor = BrickColor.new("Lime green") |
1003 | p26.FormFactor = Enum.FormFactor.Symmetric | |
1004 | p26.Size = Vector3.new(1, 1, 1) | |
1005 | p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902) | |
1006 | p26.CanCollide = false | |
1007 | p26.Locked = true | |
1008 | p26.BottomSurface = Enum.SurfaceType.Smooth | |
1009 | p26.TopSurface = Enum.SurfaceType.Smooth | |
1010 | b22 = Instance.new("SpecialMesh", p26) | |
1011 | b22.MeshType = Enum.MeshType.Brick | |
1012 | b22.Name = "Mesh" | |
1013 | w1 = Instance.new("Weld", p1) | |
1014 | w1.Name = "Wedge_Weld" | |
1015 | w1.Part0 = p1 | |
1016 | w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691) | |
1017 | w1.Part1 = p2 | |
1018 | w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008) | |
1019 | w2 = Instance.new("Weld", p2) | |
1020 | w2.Name = "Part_Weld" | |
1021 | w2.Part0 = p2 | |
1022 | w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0) | |
1023 | w2.Part1 = p3 | |
1024 | w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008) | |
1025 | w3 = Instance.new("Weld", p3) | |
1026 | w3.Name = "Wedge_Weld" | |
1027 | w3.Part0 = p3 | |
1028 | w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008) | |
1029 | w3.Part1 = p4 | |
1030 | w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008) | |
1031 | w4 = Instance.new("Weld", p4) | |
1032 | w4.Name = "Part_Weld" | |
1033 | w4.Part0 = p4 | |
1034 | w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008) | |
1035 | w4.Part1 = p5 | |
1036 | w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008) | |
1037 | w5 = Instance.new("Weld", p5) | |
1038 | w5.Name = "Part_Weld" | |
1039 | w5.Part0 = p5 | |
1040 | w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008) | |
1041 | w5.Part1 = p6 | |
1042 | w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252) | |
1043 | w6 = Instance.new("Weld", p6) | |
1044 | w6.Name = "Part_Weld" | |
1045 | w6.Part0 = p6 | |
1046 | w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051) | |
1047 | w6.Part1 = p7 | |
1048 | w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008) | |
1049 | w7 = Instance.new("Weld", p7) | |
1050 | w7.Name = "Part_Weld" | |
1051 | w7.Part0 = p7 | |
1052 | w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008) | |
1053 | w7.Part1 = p8 | |
1054 | w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292) | |
1055 | w8 = Instance.new("Weld", p8) | |
1056 | w8.Name = "Part_Weld" | |
1057 | w8.Part0 = p8 | |
1058 | w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159) | |
1059 | w8.Part1 = p9 | |
1060 | w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342) | |
1061 | w9 = Instance.new("Weld", p9) | |
1062 | w9.Name = "Part_Weld" | |
1063 | w9.Part0 = p9 | |
1064 | w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264) | |
1065 | w9.Part1 = p10 | |
1066 | w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036) | |
1067 | w10 = Instance.new("Weld", p10) | |
1068 | w10.Name = "Part_Weld" | |
1069 | w10.Part0 = p10 | |
1070 | w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702) | |
1071 | w10.Part1 = p11 | |
1072 | w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292) | |
1073 | w11 = Instance.new("Weld", p11) | |
1074 | w11.Name = "Part_Weld" | |
1075 | w11.Part0 = p11 | |
1076 | w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868) | |
1077 | w11.Part1 = p12 | |
1078 | w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008) | |
1079 | w12 = Instance.new("Weld", p12) | |
1080 | w12.Name = "Part_Weld" | |
1081 | w12.Part0 = p12 | |
1082 | w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008) | |
1083 | w12.Part1 = p13 | |
1084 | w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008) | |
1085 | w13 = Instance.new("Weld", p13) | |
1086 | w13.Name = "Part_Weld" | |
1087 | w13.Part0 = p13 | |
1088 | w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008) | |
1089 | w13.Part1 = p14 | |
1090 | w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817) | |
1091 | w14 = Instance.new("Weld", p14) | |
1092 | w14.Name = "ArmPart_Weld" | |
1093 | w14.Part0 = p14 | |
1094 | w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777) | |
1095 | w14.Part1 = p15 | |
1096 | w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008) | |
1097 | w15 = Instance.new("Weld", p15) | |
1098 | w15.Name = "Part_Weld" | |
1099 | w15.Part0 = p15 | |
1100 | w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008) | |
1101 | w15.Part1 = p16 | |
1102 | w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008) | |
1103 | w16 = Instance.new("Weld", p16) | |
1104 | w16.Name = "Part_Weld" | |
1105 | w16.Part0 = p16 | |
1106 | w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008) | |
1107 | w16.Part1 = p17 | |
1108 | w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025) | |
1109 | w17 = Instance.new("Weld", p17) | |
1110 | w17.Name = "Part_Weld" | |
1111 | w17.Part0 = p17 | |
1112 | w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783) | |
1113 | w17.Part1 = p18 | |
1114 | w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435) | |
1115 | w18 = Instance.new("Weld", p18) | |
1116 | w18.Name = "Part_Weld" | |
1117 | w18.Part0 = p18 | |
1118 | w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101) | |
1119 | w18.Part1 = p19 | |
1120 | w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918) | |
1121 | w19 = Instance.new("Weld", p19) | |
1122 | w19.Name = "Part_Weld" | |
1123 | w19.Part0 = p19 | |
1124 | w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855) | |
1125 | w19.Part1 = p20 | |
1126 | w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008) | |
1127 | w20 = Instance.new("Weld", p20) | |
1128 | w20.Name = "Part_Weld" | |
1129 | w20.Part0 = p20 | |
1130 | w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008) | |
1131 | w20.Part1 = p21 | |
1132 | w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008) | |
1133 | w21 = Instance.new("Weld", p21) | |
1134 | w21.Name = "Wedge_Weld" | |
1135 | w21.Part0 = p21 | |
1136 | w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008) | |
1137 | w21.Part1 = p22 | |
1138 | w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008) | |
1139 | w22 = Instance.new("Weld", p22) | |
1140 | w22.Name = "Part_Weld" | |
1141 | w22.Part0 = p22 | |
1142 | w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008) | |
1143 | w22.Part1 = p23 | |
1144 | w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808) | |
1145 | w23 = Instance.new("Weld", p23) | |
1146 | w23.Name = "Wedge_Weld" | |
1147 | w23.Part0 = p23 | |
1148 | w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682) | |
1149 | w23.Part1 = p24 | |
1150 | w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801) | |
1151 | w24 = Instance.new("Weld", p24) | |
1152 | w24.Name = "Part_Weld" | |
1153 | w24.Part0 = p24 | |
1154 | w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215) | |
1155 | w24.Part1 = p25 | |
1156 | w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881) | |
1157 | w25 = Instance.new("Weld", p25) | |
1158 | w25.Name = "Part_Weld" | |
1159 | w25.Part0 = p25 | |
1160 | w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466) | |
1161 | w25.Part1 = p26 | |
1162 | w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501) | |
1163 | m.Parent = char | |
1164 | m:MakeJoints() | |
1165 | ---------------------------------------------------- | |
1166 | local cor2 = Instance.new("Part", char.Claw) | |
1167 | cor2.Name = "Thingy" | |
1168 | cor2.Locked = true | |
1169 | cor2.BottomSurface = 0 | |
1170 | cor2.CanCollide = false | |
1171 | cor2.Size = Vector3.new(2, 1, 1) | |
1172 | cor2.Transparency = 1 | |
1173 | cor2.TopSurface = 0 | |
1174 | corw2 = Instance.new("Weld", cor2) | |
1175 | corw2.Part0 = larm | |
1176 | corw2.Part1 = cor2 | |
1177 | corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90)) | |
1178 | corw2.C1 = CFrame.new(0, 0, 0) | |
1179 | weld2 = Instance.new("Weld", char.Claw) | |
1180 | weld2.Part0 = cor2 | |
1181 | weld2.Part1 = char.Claw.ArmPart | |
1182 | weld2.C0 = CFrame.new(0, 0, 0) | |
1183 | ---------------------------------------------------- | |
1184 | local m = Instance.new("Model") | |
1185 | m.Name = "LeftArm" | |
1186 | p1 = Instance.new("WedgePart", m) | |
1187 | p1.BrickColor = BrickColor.new("Bright blue") | |
1188 | p1.Material = Enum.Material.Neon | |
1189 | p1.Name = "Wedge" | |
1190 | p1.FormFactor = Enum.FormFactor.Custom | |
1191 | p1.Size = Vector3.new(1, 1.19999981, 4) | |
1192 | p1.CFrame = CFrame.new(60.830101, 8.39941978, -13.7674818, 1.52359269e-006, -0.707334042, 0.707343757, -2.62521735e-006, 0.707093, 0.707071185, -1.00027835, 3.43534703e-006, 4.43342998e-007) | |
1193 | p1.CanCollide = false | |
1194 | p1.Locked = true | |
1195 | p1.TopSurface = Enum.SurfaceType.Smooth | |
1196 | b1 = Instance.new("SpecialMesh", p1) | |
1197 | b1.MeshType = Enum.MeshType.Wedge | |
1198 | b1.Name = "Mesh" | |
1199 | b1.Scale = Vector3.new(0.200000003, 1, 1) | |
1200 | p2 = Instance.new("WedgePart", m) | |
1201 | p2.BrickColor = BrickColor.new("Bright blue") | |
1202 | p2.Material = Enum.Material.Neon | |
1203 | p2.Name = "Wedge" | |
1204 | p2.FormFactor = Enum.FormFactor.Custom | |
1205 | p2.Size = Vector3.new(1, 1.19999981, 4) | |
1206 | p2.CFrame = CFrame.new(60.8306694, 8.39941502, -12.5672398, 1.56085741e-006, -0.707337618, 0.707340181, -2.7146209e-006, 0.707089424, 0.707074761, -1.00027835, 3.34575839e-006, 4.06471969e-007) | |
1207 | p2.CanCollide = false | |
1208 | p2.Locked = true | |
1209 | p2.TopSurface = Enum.SurfaceType.Smooth | |
1210 | b2 = Instance.new("SpecialMesh", p2) | |
1211 | b2.MeshType = Enum.MeshType.Wedge | |
1212 | b2.Name = "Mesh" | |
1213 | b2.Scale = Vector3.new(0.200000003, 1, 1) | |
1214 | p3 = Instance.new("WedgePart", m) | |
1215 | p3.BrickColor = BrickColor.new("Bright blue") | |
1216 | p3.Material = Enum.Material.Neon | |
1217 | p3.Name = "Wedge" | |
1218 | p3.FormFactor = Enum.FormFactor.Custom | |
1219 | p3.Size = Vector3.new(1, 1.19999981, 4) | |
1220 | p3.CFrame = CFrame.new(60.8312187, 8.39939976, -13.1675138, 1.66519976e-006, -0.707341254, 0.707336545, -2.72952207e-006, 0.707085788, 0.707078397, -1.00027835, 3.26143936e-006, 4.69727013e-007) | |
1221 | p3.CanCollide = false | |
1222 | p3.Locked = true | |
1223 | p3.TopSurface = Enum.SurfaceType.Smooth | |
1224 | b3 = Instance.new("SpecialMesh", p3) | |
1225 | b3.MeshType = Enum.MeshType.Wedge | |
1226 | b3.Name = "Mesh" | |
1227 | b3.Scale = Vector3.new(0.200000003, 1, 1) | |
1228 | p4 = Instance.new("WedgePart", m) | |
1229 | p4.BrickColor = BrickColor.new("Bright blue") | |
1230 | p4.Material = Enum.Material.Neon | |
1231 | p4.Name = "Wedge" | |
1232 | p4.FormFactor = Enum.FormFactor.Custom | |
1233 | p4.Size = Vector3.new(1, 1.19999981, 4) | |
1234 | p4.CFrame = CFrame.new(60.8317757, 8.39937305, -13.1676111, 1.74718321e-006, -0.70734489, 0.707332909, -2.7742235e-006, 0.707082152, 0.707082033, -1.00027835, 3.17185027e-006, 4.96093037e-007) | |
1235 | p4.CanCollide = false | |
1236 | p4.Locked = true | |
1237 | p4.TopSurface = Enum.SurfaceType.Smooth | |
1238 | b4 = Instance.new("SpecialMesh", p4) | |
1239 | b4.MeshType = Enum.MeshType.Wedge | |
1240 | b4.Name = "Mesh" | |
1241 | b4.Scale = Vector3.new(0.200000003, 1, 1) | |
1242 | p5 = Instance.new("WedgePart", m) | |
1243 | p5.BrickColor = BrickColor.new("Bright blue") | |
1244 | p5.Material = Enum.Material.Neon | |
1245 | p5.Name = "Wedge" | |
1246 | p5.FormFactor = Enum.FormFactor.Custom | |
1247 | p5.Size = Vector3.new(1, 1.19999981, 3.30000019) | |
1248 | p5.CFrame = CFrame.new(60.4623528, 9.0813055, -13.1677084, -1.74365277e-006, 0.422768414, 0.90661031, 3.01146247e-006, -0.90627563, 0.422602654, 1.00028574, -3.16541991e-006, -6.48408104e-007) | |
1249 | p5.CanCollide = false | |
1250 | p5.Locked = true | |
1251 | p5.TopSurface = Enum.SurfaceType.Smooth | |
1252 | b5 = Instance.new("SpecialMesh", p5) | |
1253 | b5.MeshType = Enum.MeshType.Wedge | |
1254 | b5.Name = "Mesh" | |
1255 | b5.Scale = Vector3.new(0.200000003, 1, 1) | |
1256 | p6 = Instance.new("WedgePart", m) | |
1257 | p6.BrickColor = BrickColor.new("Bright blue") | |
1258 | p6.Material = Enum.Material.Neon | |
1259 | p6.Name = "Wedge" | |
1260 | p6.FormFactor = Enum.FormFactor.Custom | |
1261 | p6.Size = Vector3.new(1, 1.19999981, 3.30000019) | |
1262 | p6.CFrame = CFrame.new(60.4629173, 9.08128643, -13.7679863, -1.75857326e-006, 0.422772557, 0.906618714, 3.13068858e-006, -0.906274974, 0.422602147, 1.00029314, -3.27979569e-006, -6.11540997e-007) | |
1263 | p6.CanCollide = false | |
1264 | p6.Locked = true | |
1265 | p6.TopSurface = Enum.SurfaceType.Smooth | |
1266 | b6 = Instance.new("SpecialMesh", p6) | |
1267 | b6.MeshType = Enum.MeshType.Wedge | |
1268 | b6.Name = "Mesh" | |
1269 | b6.Scale = Vector3.new(0.200000003, 1, 1) | |
1270 | p7 = Instance.new("WedgePart", m) | |
1271 | p7.BrickColor = BrickColor.new("Bright blue") | |
1272 | p7.Material = Enum.Material.Neon | |
1273 | p7.Name = "Wedge" | |
1274 | p7.FormFactor = Enum.FormFactor.Custom | |
1275 | p7.Size = Vector3.new(1, 1.19999981, 3.30000019) | |
1276 | p7.CFrame = CFrame.new(60.4634781, 9.0812645, -12.5677195, -1.77349398e-006, 0.422776699, 0.906627119, 3.24991538e-006, -0.906274319, 0.42260164, 1.00030053, -3.39417238e-006, -5.74673834e-007) | |
1277 | p7.CanCollide = false | |
1278 | p7.Locked = true | |
1279 | p7.TopSurface = Enum.SurfaceType.Smooth | |
1280 | b7 = Instance.new("SpecialMesh", p7) | |
1281 | b7.MeshType = Enum.MeshType.Wedge | |
1282 | b7.Name = "Mesh" | |
1283 | b7.Scale = Vector3.new(0.200000003, 1, 1) | |
1284 | p8 = Instance.new("Part", m) | |
1285 | - | p8.BrickColor = BrickColor.new("Really black") |
1285 | + | p8.BrickColor = BrickColor.new("Lime green") |
1286 | p8.Material = Enum.Material.Neon | |
1287 | p8.FormFactor = Enum.FormFactor.Custom | |
1288 | p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1289 | p8.CFrame = CFrame.new(62.1344833, 9.89923668, -14.2683573, 1.0003655, -9.00030136e-006, -1.6914961e-006, -8.34465027e-007, 0.999961495, 3.15914986e-006, -2.15653972e-006, 3.05826416e-006, 1.00030792) | |
1290 | p8.CanCollide = false | |
1291 | p8.Locked = true | |
1292 | p8.BottomSurface = Enum.SurfaceType.Smooth | |
1293 | p8.TopSurface = Enum.SurfaceType.Smooth | |
1294 | b8 = Instance.new("SpecialMesh", p8) | |
1295 | b8.MeshType = Enum.MeshType.Sphere | |
1296 | b8.Name = "Mesh" | |
1297 | p9 = Instance.new("Part", m) | |
1298 | - | p9.BrickColor = BrickColor.new("Really black") |
1298 | + | p9.BrickColor = BrickColor.new("Lime green") |
1299 | p9.Material = Enum.Material.Neon | |
1300 | p9.FormFactor = Enum.FormFactor.Custom | |
1301 | p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1302 | p9.CFrame = CFrame.new(62.1350441, 7.19933271, -14.2684784, 1.00037432, -9.11423649e-006, -1.78677055e-006, -8.82557742e-007, 0.999960482, 3.17407398e-006, -2.19382355e-006, 3.14769591e-006, 1.00031543) | |
1303 | p9.CanCollide = false | |
1304 | p9.Locked = true | |
1305 | p9.BottomSurface = Enum.SurfaceType.Smooth | |
1306 | p9.TopSurface = Enum.SurfaceType.Smooth | |
1307 | b9 = Instance.new("SpecialMesh", p9) | |
1308 | b9.MeshType = Enum.MeshType.Sphere | |
1309 | b9.Name = "Mesh" | |
1310 | p10 = Instance.new("Part", m) | |
1311 | p10.BrickColor = BrickColor.new("Bright blue") | |
1312 | p10.Material = Enum.Material.Neon | |
1313 | p10.FormFactor = Enum.FormFactor.Custom | |
1314 | p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048) | |
1315 | p10.CFrame = CFrame.new(62.4732666, 7.92819929, -14.2685785, -0.906659067, -0.422771662, -1.80169195e-006, 0.422602057, -0.906270981, 3.2933026e-006, 3.38190716e-006, -1.99476835e-006, 1.00032294) | |
1316 | p10.CanCollide = false | |
1317 | p10.Locked = true | |
1318 | p10.BottomSurface = Enum.SurfaceType.Smooth | |
1319 | p10.TopSurface = Enum.SurfaceType.Smooth | |
1320 | p11 = Instance.new("Part", m) | |
1321 | p11.BrickColor = BrickColor.new("Bright blue") | |
1322 | p11.Material = Enum.Material.Neon | |
1323 | p11.FormFactor = Enum.FormFactor.Custom | |
1324 | p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048) | |
1325 | p11.CFrame = CFrame.new(62.4794731, 9.45469475, -14.2686787, -0.819467902, 0.573809147, -1.81661335e-006, -0.573551893, -0.819118977, 3.41253167e-006, -9.27350783e-008, -4.03244348e-006, 1.00033033) | |
1326 | p11.CanCollide = false | |
1327 | p11.Locked = true | |
1328 | p11.BottomSurface = Enum.SurfaceType.Smooth | |
1329 | p11.TopSurface = Enum.SurfaceType.Smooth | |
1330 | p12 = Instance.new("Part", m) | |
1331 | - | p12.BrickColor = BrickColor.new("Really black") |
1331 | + | p12.BrickColor = BrickColor.new("Lime green") |
1332 | p12.Material = Enum.Material.Neon | |
1333 | p12.FormFactor = Enum.FormFactor.Custom | |
1334 | p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1335 | p12.CFrame = CFrame.new(62.7369499, 6.29933262, -14.2688055, 1.00040102, -9.53674316e-006, -1.84644205e-006, -1.25169754e-006, 0.999957919, 3.50196092e-006, -2.25187659e-006, 3.46763295e-006, 1.00033784) | |
1336 | p12.CanCollide = false | |
1337 | p12.Locked = true | |
1338 | p12.BottomSurface = Enum.SurfaceType.Smooth | |
1339 | p12.TopSurface = Enum.SurfaceType.Smooth | |
1340 | b10 = Instance.new("SpecialMesh", p12) | |
1341 | b10.MeshType = Enum.MeshType.Sphere | |
1342 | b10.Name = "Mesh" | |
1343 | p13 = Instance.new("Part", m) | |
1344 | p13.BrickColor = BrickColor.new("Bright blue") | |
1345 | p13.Material = Enum.Material.Neon | |
1346 | p13.FormFactor = Enum.FormFactor.Custom | |
1347 | p13.Size = Vector3.new(1.5, 1.5, 1.5) | |
1348 | p13.CFrame = CFrame.new(62.8003883, 10.1991549, -13.2136488, 1.00040984, -9.59636054e-006, -1.88372474e-006, -1.43051466e-006, 0.999956846, 3.58340549e-006, -2.3487878e-006, 3.4825357e-006, 1.00034535) | |
1349 | p13.CanCollide = false | |
1350 | p13.Locked = true | |
1351 | p13.BottomSurface = Enum.SurfaceType.Smooth | |
1352 | p13.TopSurface = Enum.SurfaceType.Smooth | |
1353 | b11 = Instance.new("SpecialMesh", p13) | |
1354 | b11.MeshType = Enum.MeshType.Sphere | |
1355 | b11.Name = "Mesh" | |
1356 | p14 = Instance.new("Part", m) | |
1357 | - | p14.BrickColor = BrickColor.new("Really black") |
1357 | + | p14.BrickColor = BrickColor.new("Lime green") |
1358 | p14.Material = Enum.Material.Neon | |
1359 | p14.FormFactor = Enum.FormFactor.Custom | |
1360 | p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1361 | p14.CFrame = CFrame.new(62.7374802, 9.79915905, -14.2689018, 1.00041437, -9.80505502e-006, -1.96572228e-006, -1.37091877e-006, 0.999956131, 3.62812011e-006, -2.37115751e-006, 3.4527211e-006, 1.00034904) | |
1362 | p14.CanCollide = false | |
1363 | p14.Locked = true | |
1364 | p14.BottomSurface = Enum.SurfaceType.Smooth | |
1365 | p14.TopSurface = Enum.SurfaceType.Smooth | |
1366 | b12 = Instance.new("SpecialMesh", p14) | |
1367 | b12.MeshType = Enum.MeshType.Sphere | |
1368 | b12.Name = "Mesh" | |
1369 | p15 = Instance.new("Part", m) | |
1370 | - | p15.BrickColor = BrickColor.new("Really black") |
1370 | + | p15.BrickColor = BrickColor.new("Lime green") |
1371 | p15.Material = Enum.Material.Metal | |
1372 | p15.Name = "Main" | |
1373 | p15.FormFactor = Enum.FormFactor.Custom | |
1374 | p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005) | |
1375 | p15.CFrame = CFrame.new(62.838131, 8.1992178, -13.1686192, 1.00041902, -9.80505047e-006, -1.96572933e-006, -1.54973122e-006, 0.999955654, 3.62813353e-006, -2.38607572e-006, 3.57197018e-006, 1.00035274) | |
1376 | p15.CanCollide = false | |
1377 | p15.Locked = true | |
1378 | p15.BottomSurface = Enum.SurfaceType.Smooth | |
1379 | p15.TopSurface = Enum.SurfaceType.Smooth | |
1380 | p16 = Instance.new("Part", m) | |
1381 | - | p16.BrickColor = BrickColor.new("Really black") |
1381 | + | p16.BrickColor = BrickColor.new("Lime green") |
1382 | p16.Material = Enum.Material.Neon | |
1383 | p16.FormFactor = Enum.FormFactor.Custom | |
1384 | p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1385 | p16.CFrame = CFrame.new(62.9387741, 8.79918098, -14.2691231, 1.0004282, -9.95411301e-006, -2.00301338e-006, -1.66894927e-006, 0.999954581, 3.71756369e-006, -2.46808372e-006, 3.61668594e-006, 1.00036013) | |
1386 | p16.CanCollide = false | |
1387 | p16.Locked = true | |
1388 | p16.BottomSurface = Enum.SurfaceType.Smooth | |
1389 | p16.TopSurface = Enum.SurfaceType.Smooth | |
1390 | b13 = Instance.new("SpecialMesh", p16) | |
1391 | b13.MeshType = Enum.MeshType.Sphere | |
1392 | b13.Name = "Mesh" | |
1393 | p17 = Instance.new("Part", m) | |
1394 | p17.BrickColor = BrickColor.new("Bright blue") | |
1395 | p17.Material = Enum.Material.Neon | |
1396 | p17.FormFactor = Enum.FormFactor.Custom | |
1397 | p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048) | |
1398 | p17.CFrame = CFrame.new(63.0825539, 6.854743, -14.2692442, -0.866409063, -0.50020963, -2.099928e-006, 0.499978155, -0.86598444, 3.73249213e-006, 4.01878242e-006, -1.94999211e-006, 1.00036764) | |
1399 | p17.CanCollide = false | |
1400 | p17.Locked = true | |
1401 | p17.BottomSurface = Enum.SurfaceType.Smooth | |
1402 | p17.TopSurface = Enum.SurfaceType.Smooth | |
1403 | p18 = Instance.new("Part", m) | |
1404 | p18.BrickColor = BrickColor.new("Bright blue") | |
1405 | p18.Material = Enum.Material.Neon | |
1406 | p18.FormFactor = Enum.FormFactor.Custom | |
1407 | p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048) | |
1408 | p18.CFrame = CFrame.new(63.1831665, 8.15466595, -14.2693415, -0.906707585, 0.422816038, -2.11485258e-006, -0.422596663, -0.906265914, 3.8437388e-006, 6.9698217e-007, -4.50413063e-006, 1.00037515) | |
1409 | p18.CanCollide = false | |
1410 | p18.Locked = true | |
1411 | p18.BottomSurface = Enum.SurfaceType.Smooth | |
1412 | p18.TopSurface = Enum.SurfaceType.Smooth | |
1413 | p19 = Instance.new("Part", m) | |
1414 | p19.BrickColor = BrickColor.new("Bright blue") | |
1415 | p19.Material = Enum.Material.Neon | |
1416 | p19.FormFactor = Enum.FormFactor.Custom | |
1417 | p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048) | |
1418 | p19.CFrame = CFrame.new(63.2069473, 8.53140068, -14.2694473, -0.707418501, 0.707425714, -2.09994369e-006, -0.707068563, -0.707078457, 3.72453474e-006, -9.59315798e-007, -4.56575162e-006, 1.00037515) | |
1419 | p19.CanCollide = false | |
1420 | p19.Locked = true | |
1421 | p19.BottomSurface = Enum.SurfaceType.Smooth | |
1422 | p19.TopSurface = Enum.SurfaceType.Smooth | |
1423 | p20 = Instance.new("Part", m) | |
1424 | p20.BrickColor = BrickColor.new("Bright blue") | |
1425 | p20.Material = Enum.Material.Neon | |
1426 | p20.FormFactor = Enum.FormFactor.Custom | |
1427 | p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048) | |
1428 | p20.CFrame = CFrame.new(63.2280884, 9.68191624, -14.2694416, -0.342169315, 0.940117717, -2.11486008e-006, -0.93964541, -0.342010528, 3.84375198e-006, -2.7989995e-006, -3.73256239e-006, 1.00037885) | |
1429 | p20.CanCollide = false | |
1430 | p20.Locked = true | |
1431 | p20.BottomSurface = Enum.SurfaceType.Smooth | |
1432 | p20.TopSurface = Enum.SurfaceType.Smooth | |
1433 | p21 = Instance.new("Part", m) | |
1434 | p21.BrickColor = BrickColor.new("Bright blue") | |
1435 | p21.Material = Enum.Material.Neon | |
1436 | p21.FormFactor = Enum.FormFactor.Custom | |
1437 | p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048) | |
1438 | p21.CFrame = CFrame.new(63.3539009, 9.07959557, -14.2694454, 0.707428038, 0.707422554, -2.12876989e-006, -0.707079053, 0.707067132, 3.83015185e-006, -4.56554562e-006, 9.7875602e-007, 1.00037885) | |
1439 | p21.CanCollide = false | |
1440 | p21.Locked = true | |
1441 | p21.BottomSurface = Enum.SurfaceType.Smooth | |
1442 | p21.TopSurface = Enum.SurfaceType.Smooth | |
1443 | p22 = Instance.new("Part", m) | |
1444 | - | p22.BrickColor = BrickColor.new("Really black") |
1444 | + | p22.BrickColor = BrickColor.new("Lime green") |
1445 | p22.Material = Enum.Material.Neon | |
1446 | p22.FormFactor = Enum.FormFactor.Custom | |
1447 | p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1448 | p22.CFrame = CFrame.new(63.4412346, 7.49916172, -14.269558, 1.0004549, -5.30481339e-006, -2.11486781e-006, -7.24196434e-006, 0.999951959, 3.84376608e-006, -2.5650661e-006, 4.02606338e-006, 1.00038254) | |
1449 | p22.CanCollide = false | |
1450 | p22.Locked = true | |
1451 | p22.BottomSurface = Enum.SurfaceType.Smooth | |
1452 | p22.TopSurface = Enum.SurfaceType.Smooth | |
1453 | b14 = Instance.new("SpecialMesh", p22) | |
1454 | b14.MeshType = Enum.MeshType.Sphere | |
1455 | b14.Name = "Mesh" | |
1456 | p23 = Instance.new("Part", m) | |
1457 | - | p23.BrickColor = BrickColor.new("Really black") |
1457 | + | p23.BrickColor = BrickColor.new("Lime green") |
1458 | p23.Material = Enum.Material.Neon | |
1459 | p23.FormFactor = Enum.FormFactor.Custom | |
1460 | p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1461 | p23.CFrame = CFrame.new(63.5412827, 8.29912186, -14.2695541, 1.00045943, -5.54520193e-006, -2.12978443e-006, -7.22709638e-006, 0.999951601, 3.96298356e-006, -2.56507747e-006, 4.02606247e-006, 1.00038624) | |
1462 | p23.CanCollide = false | |
1463 | p23.Locked = true | |
1464 | p23.BottomSurface = Enum.SurfaceType.Smooth | |
1465 | p23.TopSurface = Enum.SurfaceType.Smooth | |
1466 | b15 = Instance.new("SpecialMesh", p23) | |
1467 | b15.MeshType = Enum.MeshType.Sphere | |
1468 | b15.Name = "Mesh" | |
1469 | p24 = Instance.new("Part", m) | |
1470 | - | p24.BrickColor = BrickColor.new("Really black") |
1470 | + | p24.BrickColor = BrickColor.new("Lime green") |
1471 | p24.Material = Enum.Material.Neon | |
1472 | p24.FormFactor = Enum.FormFactor.Custom | |
1473 | p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1474 | p24.CFrame = CFrame.new(63.7413521, 9.49905682, -14.2695513, 1.00045943, -5.51538596e-006, -2.12978443e-006, -7.25689733e-006, 0.999951601, 3.96298356e-006, -2.56507769e-006, 4.02606247e-006, 1.00038624) | |
1475 | p24.CanCollide = false | |
1476 | p24.Locked = true | |
1477 | p24.BottomSurface = Enum.SurfaceType.Smooth | |
1478 | p24.TopSurface = Enum.SurfaceType.Smooth | |
1479 | b16 = Instance.new("SpecialMesh", p24) | |
1480 | b16.MeshType = Enum.MeshType.Sphere | |
1481 | b16.Name = "Mesh" | |
1482 | w1 = Instance.new("Weld", p1) | |
1483 | w1.Name = "Wedge_Weld" | |
1484 | w1.Part0 = p1 | |
1485 | w1.C0 = CFrame.new(-13.7623367, 38.4686089, -47.5196228, 1.82382877e-007, -1.21785519e-007, -1.0000037, -0.707109988, 0.707106709, -1.20249211e-007, 0.707110047, 0.707106352, 1.16605563e-007) | |
1486 | w1.Part1 = p2 | |
1487 | w1.C1 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008) | |
1488 | w2 = Instance.new("Weld", p2) | |
1489 | w2.Name = "Wedge_Weld" | |
1490 | w2.Part0 = p2 | |
1491 | w2.C0 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008) | |
1492 | w2.Part1 = p3 | |
1493 | w2.C1 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008) | |
1494 | w3 = Instance.new("Weld", p3) | |
1495 | w3.Name = "Wedge_Weld" | |
1496 | w3.Part0 = p3 | |
1497 | w3.C0 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008) | |
1498 | w3.Part1 = p4 | |
1499 | w3.C1 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007) | |
1500 | w4 = Instance.new("Weld", p4) | |
1501 | w4.Name = "Wedge_Weld" | |
1502 | w4.Part0 = p4 | |
1503 | w4.C0 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007) | |
1504 | w4.Part1 = p5 | |
1505 | w4.C1 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008) | |
1506 | w5 = Instance.new("Weld", p5) | |
1507 | w5.Name = "Wedge_Weld" | |
1508 | w5.Part0 = p5 | |
1509 | w5.C0 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008) | |
1510 | w5.Part1 = p6 | |
1511 | w5.C1 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008) | |
1512 | w6 = Instance.new("Weld", p6) | |
1513 | w6.Name = "Wedge_Weld" | |
1514 | w6.Part0 = p6 | |
1515 | w6.C0 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008) | |
1516 | w6.Part1 = p7 | |
1517 | w6.C1 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008) | |
1518 | w7 = Instance.new("Weld", p7) | |
1519 | w7.Name = "Part_Weld" | |
1520 | w7.Part0 = p7 | |
1521 | w7.C0 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008) | |
1522 | w7.Part1 = p8 | |
1523 | w7.C1 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037) | |
1524 | w8 = Instance.new("Weld", p8) | |
1525 | w8.Name = "Part_Weld" | |
1526 | w8.Part0 = p8 | |
1527 | w8.C0 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037) | |
1528 | w8.Part1 = p9 | |
1529 | w8.C1 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
1530 | w9 = Instance.new("Weld", p9) | |
1531 | w9.Name = "Part_Weld" | |
1532 | w9.Part0 = p9 | |
1533 | w9.C0 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
1534 | w9.Part1 = p10 | |
1535 | w9.C1 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037) | |
1536 | w10 = Instance.new("Weld", p10) | |
1537 | w10.Name = "Part_Weld" | |
1538 | w10.Part0 = p10 | |
1539 | w10.C0 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037) | |
1540 | w10.Part1 = p11 | |
1541 | w10.C1 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037) | |
1542 | w11 = Instance.new("Weld", p11) | |
1543 | w11.Name = "Part_Weld" | |
1544 | w11.Part0 = p11 | |
1545 | w11.C0 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037) | |
1546 | w11.Part1 = p12 | |
1547 | w11.C1 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381) | |
1548 | w12 = Instance.new("Weld", p12) | |
1549 | w12.Name = "Part_Weld" | |
1550 | w12.Part0 = p12 | |
1551 | w12.C0 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381) | |
1552 | w12.Part1 = p13 | |
1553 | w12.C1 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037) | |
1554 | w13 = Instance.new("Weld", p13) | |
1555 | w13.Name = "Part_Weld" | |
1556 | w13.Part0 = p13 | |
1557 | w13.C0 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037) | |
1558 | w13.Part1 = p14 | |
1559 | w13.C1 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1) | |
1560 | w14 = Instance.new("Weld", p14) | |
1561 | w14.Name = "Part_Weld" | |
1562 | w14.Part0 = p14 | |
1563 | w14.C0 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1) | |
1564 | w14.Part1 = p15 | |
1565 | w14.C1 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037) | |
1566 | w15 = Instance.new("Weld", p15) | |
1567 | w15.Name = "Part_Weld" | |
1568 | w15.Part0 = p15 | |
1569 | w15.C0 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037) | |
1570 | w15.Part1 = p16 | |
1571 | w15.C1 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037) | |
1572 | w16 = Instance.new("Weld", p16) | |
1573 | w16.Name = "Part_Weld" | |
1574 | w16.Part0 = p16 | |
1575 | w16.C0 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037) | |
1576 | w16.Part1 = p17 | |
1577 | w16.C1 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381) | |
1578 | w17 = Instance.new("Weld", p17) | |
1579 | w17.Name = "Part_Weld" | |
1580 | w17.Part0 = p17 | |
1581 | w17.C0 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381) | |
1582 | w17.Part1 = p18 | |
1583 | w17.C1 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037) | |
1584 | w18 = Instance.new("Weld", p18) | |
1585 | w18.Name = "Part_Weld" | |
1586 | w18.Part0 = p18 | |
1587 | w18.C0 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037) | |
1588 | w18.Part1 = p19 | |
1589 | w18.C1 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037) | |
1590 | w19 = Instance.new("Weld", p19) | |
1591 | w19.Name = "Part_Weld" | |
1592 | w19.Part0 = p19 | |
1593 | w19.C0 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037) | |
1594 | w19.Part1 = p20 | |
1595 | w19.C1 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1) | |
1596 | w20 = Instance.new("Weld", p20) | |
1597 | w20.Name = "Part_Weld" | |
1598 | w20.Part0 = p20 | |
1599 | w20.C0 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1) | |
1600 | w20.Part1 = p21 | |
1601 | w20.C1 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1) | |
1602 | w21 = Instance.new("Weld", p21) | |
1603 | w21.Name = "Part_Weld" | |
1604 | w21.Part0 = p21 | |
1605 | w21.C0 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1) | |
1606 | w21.Part1 = p22 | |
1607 | w21.C1 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037) | |
1608 | w22 = Instance.new("Weld", p22) | |
1609 | w22.Name = "Part_Weld" | |
1610 | w22.Part0 = p22 | |
1611 | w22.C0 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037) | |
1612 | w22.Part1 = p23 | |
1613 | w22.C1 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1) | |
1614 | w23 = Instance.new("Weld", p23) | |
1615 | w23.Name = "Part_Weld" | |
1616 | w23.Part0 = p23 | |
1617 | w23.C0 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1) | |
1618 | w23.Part1 = p24 | |
1619 | w23.C1 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1) | |
1620 | w24 = Instance.new("Weld", p24) | |
1621 | w24.Name = "Part_Weld" | |
1622 | w24.Part0 = p24 | |
1623 | w24.C0 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1) | |
1624 | m.Parent = larm | |
1625 | m:MakeJoints() | |
1626 | ---------------------------------------------------- | |
1627 | local cor3 = Instance.new("Part", larm.LeftArm) | |
1628 | cor3.Name = "Thingy" | |
1629 | cor3.Locked = true | |
1630 | cor3.BottomSurface = 0 | |
1631 | cor3.CanCollide = false | |
1632 | cor3.Size = Vector3.new(2, 1, 1) | |
1633 | cor3.Transparency = 1 | |
1634 | cor3.TopSurface = 0 | |
1635 | corw2 = Instance.new("Weld", cor3) | |
1636 | corw2.Part0 = larm | |
1637 | corw2.Part1 = cor3 | |
1638 | corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)) | |
1639 | corw2.C1 = CFrame.new(0, 0, 0) | |
1640 | weld2 = Instance.new("Weld", larm.LeftArm) | |
1641 | weld2.Part0 = cor3 | |
1642 | weld2.Part1 = p15 | |
1643 | weld2.C0 = CFrame.new(0, 0, 0) | |
1644 | ---------------------------------------------------- | |
1645 | local m = Instance.new("Model") | |
1646 | m.Name = "RightArm" | |
1647 | p1 = Instance.new("WedgePart", m) | |
1648 | p1.BrickColor = BrickColor.new("Bright blue") | |
1649 | p1.Material = Enum.Material.Neon | |
1650 | p1.Name = "Wedge" | |
1651 | p1.FormFactor = Enum.FormFactor.Custom | |
1652 | p1.Size = Vector3.new(1, 1.19999981, 3.30000019) | |
1653 | p1.CFrame = CFrame.new(71.7528229, 9.08148766, -13.7657108, 2.20961255e-007, -0.422704399, -0.906498253, -1.70178805e-006, -0.906287491, 0.422612786, -1.00018191, -1.16194826e-006, 2.39246219e-006) | |
1654 | p1.CanCollide = false | |
1655 | p1.Locked = true | |
1656 | p1.TopSurface = Enum.SurfaceType.Smooth | |
1657 | b1 = Instance.new("SpecialMesh", p1) | |
1658 | b1.MeshType = Enum.MeshType.Wedge | |
1659 | b1.Name = "Mesh" | |
1660 | b1.Scale = Vector3.new(0.200000003, 1, 1) | |
1661 | p2 = Instance.new("WedgePart", m) | |
1662 | p2.BrickColor = BrickColor.new("Bright blue") | |
1663 | p2.Material = Enum.Material.Neon | |
1664 | p2.Name = "Wedge" | |
1665 | p2.FormFactor = Enum.FormFactor.Custom | |
1666 | p2.Size = Vector3.new(1, 1.19999981, 3.30000019) | |
1667 | p2.CFrame = CFrame.new(71.7534714, 9.08147335, -12.5655851, 3.25293399e-007, -0.422708124, -0.906506479, -1.7167032e-006, -0.906286299, 0.422612339, -1.0001893, -1.13135729e-006, 2.49332743e-006) | |
1668 | p2.CanCollide = false | |
1669 | p2.Locked = true | |
1670 | p2.TopSurface = Enum.SurfaceType.Smooth | |
1671 | b2 = Instance.new("SpecialMesh", p2) | |
1672 | b2.MeshType = Enum.MeshType.Wedge | |
1673 | b2.Name = "Mesh" | |
1674 | b2.Scale = Vector3.new(0.200000003, 1, 1) | |
1675 | p3 = Instance.new("WedgePart", m) | |
1676 | p3.BrickColor = BrickColor.new("Bright blue") | |
1677 | p3.Material = Enum.Material.Neon | |
1678 | p3.Name = "Wedge" | |
1679 | p3.FormFactor = Enum.FormFactor.Custom | |
1680 | p3.Size = Vector3.new(1, 1.19999981, 3.30000019) | |
1681 | p3.CFrame = CFrame.new(71.7541199, 9.08145237, -13.1658068, 4.29627249e-007, -0.422711849, -0.906514704, -1.73161834e-006, -0.906285107, 0.422611892, -1.0001967, -1.10076587e-006, 2.59419403e-006) | |
1682 | p3.CanCollide = false | |
1683 | p3.Locked = true | |
1684 | p3.TopSurface = Enum.SurfaceType.Smooth | |
1685 | b3 = Instance.new("SpecialMesh", p3) | |
1686 | b3.MeshType = Enum.MeshType.Wedge | |
1687 | b3.Name = "Mesh" | |
1688 | b3.Scale = Vector3.new(0.200000003, 1, 1) | |
1689 | p4 = Instance.new("WedgePart", m) | |
1690 | p4.BrickColor = BrickColor.new("Bright blue") | |
1691 | p4.Material = Enum.Material.Neon | |
1692 | p4.Name = "Wedge" | |
1693 | p4.FormFactor = Enum.FormFactor.Custom | |
1694 | p4.Size = Vector3.new(1, 1.19999981, 4) | |
1695 | p4.CFrame = CFrame.new(71.4245453, 8.39948177, -13.7660398, -5.32960883e-007, 0.70726943, -0.707265258, 1.90324067e-006, 0.707083881, 0.707096815, 1.0001967, 9.87842554e-008, 2.61978244e-006) | |
1696 | p4.CanCollide = false | |
1697 | p4.Locked = true | |
1698 | p4.TopSurface = Enum.SurfaceType.Smooth | |
1699 | b4 = Instance.new("SpecialMesh", p4) | |
1700 | b4.MeshType = Enum.MeshType.Wedge | |
1701 | b4.Name = "Mesh" | |
1702 | b4.Scale = Vector3.new(0.200000003, 1, 1) | |
1703 | p5 = Instance.new("WedgePart", m) | |
1704 | p5.BrickColor = BrickColor.new("Bright blue") | |
1705 | p5.Material = Enum.Material.Neon | |
1706 | p5.Name = "Wedge" | |
1707 | p5.FormFactor = Enum.FormFactor.Custom | |
1708 | p5.Size = Vector3.new(1, 1.19999981, 4) | |
1709 | p5.CFrame = CFrame.new(71.4251862, 8.39946651, -13.1660223, -6.3729243e-007, 0.707273066, -0.707261622, 1.91814229e-006, 0.707080245, 0.707100451, 1.0001967, 1.62003985e-007, 2.53547341e-006) | |
1710 | p5.CanCollide = false | |
1711 | p5.Locked = true | |
1712 | p5.TopSurface = Enum.SurfaceType.Smooth | |
1713 | b5 = Instance.new("SpecialMesh", p5) | |
1714 | b5.MeshType = Enum.MeshType.Wedge | |
1715 | b5.Name = "Mesh" | |
1716 | b5.Scale = Vector3.new(0.200000003, 1, 1) | |
1717 | p6 = Instance.new("WedgePart", m) | |
1718 | p6.BrickColor = BrickColor.new("Bright blue") | |
1719 | p6.Material = Enum.Material.Neon | |
1720 | p6.Name = "Wedge" | |
1721 | p6.FormFactor = Enum.FormFactor.Custom | |
1722 | p6.Size = Vector3.new(1, 1.19999981, 4) | |
1723 | p6.CFrame = CFrame.new(71.4258194, 8.39945126, -12.5660009, -7.41623865e-007, 0.707276702, -0.707257986, 1.93304436e-006, 0.707076609, 0.707104087, 1.0001967, 2.25224142e-007, 2.45116462e-006) | |
1724 | p6.CanCollide = false | |
1725 | p6.Locked = true | |
1726 | p6.TopSurface = Enum.SurfaceType.Smooth | |
1727 | b6 = Instance.new("SpecialMesh", p6) | |
1728 | b6.MeshType = Enum.MeshType.Wedge | |
1729 | b6.Name = "Mesh" | |
1730 | b6.Scale = Vector3.new(0.200000003, 1, 1) | |
1731 | p7 = Instance.new("Part", m) | |
1732 | - | p7.BrickColor = BrickColor.new("Really black") |
1732 | + | p7.BrickColor = BrickColor.new("Lime green") |
1733 | p7.Material = Enum.Material.Neon | |
1734 | p7.FormFactor = Enum.FormFactor.Custom | |
1735 | p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1736 | p7.CFrame = CFrame.new(70.3255081, 6.6994977, -14.2663507, 1.00023162, 1.31726265e-005, -7.92685455e-007, -1.94311142e-005, 0.999976158, 1.97985287e-006, -1.62725564e-006, 1.86058458e-006, 1.00020039) | |
1737 | p7.CanCollide = false | |
1738 | p7.Locked = true | |
1739 | p7.BottomSurface = Enum.SurfaceType.Smooth | |
1740 | p7.TopSurface = Enum.SurfaceType.Smooth | |
1741 | b7 = Instance.new("SpecialMesh", p7) | |
1742 | b7.MeshType = Enum.MeshType.Sphere | |
1743 | b7.Name = "Mesh" | |
1744 | p8 = Instance.new("Part", m) | |
1745 | p8.BrickColor = BrickColor.new("Bright blue") | |
1746 | p8.Material = Enum.Material.Neon | |
1747 | p8.FormFactor = Enum.FormFactor.Custom | |
1748 | p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048) | |
1749 | p8.CFrame = CFrame.new(70.0060196, 9.16293144, -14.2664633, 0.881308079, -0.429463804, -0.198316693, 0.401435703, 0.900625467, -0.166355878, 0.250050306, 0.0670034215, 0.966122985) | |
1750 | p8.CanCollide = false | |
1751 | p8.Locked = true | |
1752 | p8.BottomSurface = Enum.SurfaceType.Smooth | |
1753 | p8.TopSurface = Enum.SurfaceType.Smooth | |
1754 | p9 = Instance.new("Part", m) | |
1755 | - | p9.BrickColor = BrickColor.new("Really black") |
1755 | + | p9.BrickColor = BrickColor.new("Lime green") |
1756 | p9.Material = Enum.Material.Neon | |
1757 | p9.FormFactor = Enum.FormFactor.Custom | |
1758 | p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1759 | p9.CFrame = CFrame.new(70.2268219, 8.59942532, -14.2665701, 1.00024557, 1.30422413e-005, -8.7916851e-007, -1.95577741e-005, 0.999974489, 1.9967556e-006, -1.75833702e-006, 2.01165676e-006, 1.00021148) | |
1760 | p9.CanCollide = false | |
1761 | p9.Locked = true | |
1762 | p9.BottomSurface = Enum.SurfaceType.Smooth | |
1763 | p9.TopSurface = Enum.SurfaceType.Smooth | |
1764 | b8 = Instance.new("SpecialMesh", p9) | |
1765 | b8.MeshType = Enum.MeshType.Sphere | |
1766 | b8.Name = "Mesh" | |
1767 | p10 = Instance.new("Part", m) | |
1768 | - | p10.BrickColor = BrickColor.new("Really black") |
1768 | + | p10.BrickColor = BrickColor.new("Lime green") |
1769 | p10.Material = Enum.Material.Neon | |
1770 | p10.FormFactor = Enum.FormFactor.Custom | |
1771 | p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1772 | p10.CFrame = CFrame.new(69.8274002, 9.5993948, -14.266675, 1.00025487, 1.30049675e-005, -9.23888138e-007, -1.9595207e-005, 0.999973536, 2.11597762e-006, -1.80306665e-006, 2.13088947e-006, 1.00021887) | |
1773 | p10.CanCollide = false | |
1774 | p10.Locked = true | |
1775 | p10.BottomSurface = Enum.SurfaceType.Smooth | |
1776 | p10.TopSurface = Enum.SurfaceType.Smooth | |
1777 | b9 = Instance.new("SpecialMesh", p10) | |
1778 | b9.MeshType = Enum.MeshType.Sphere | |
1779 | b9.Name = "Mesh" | |
1780 | p11 = Instance.new("Part", m) | |
1781 | p11.BrickColor = BrickColor.new("Bright blue") | |
1782 | p11.Material = Enum.Material.Neon | |
1783 | p11.FormFactor = Enum.FormFactor.Custom | |
1784 | p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048) | |
1785 | p11.CFrame = CFrame.new(69.693718, 7.37976837, -14.2265854, 0.690841019, -0.711695194, -0.129447505, 0.678571701, 0.699464202, -0.224133074, 0.250056893, 0.0670053288, 0.966144204) | |
1786 | p11.CanCollide = false | |
1787 | p11.Locked = true | |
1788 | p11.BottomSurface = Enum.SurfaceType.Smooth | |
1789 | p11.TopSurface = Enum.SurfaceType.Smooth | |
1790 | p12 = Instance.new("Part", m) | |
1791 | p12.BrickColor = BrickColor.new("Bright blue") | |
1792 | p12.Material = Enum.Material.Neon | |
1793 | p12.FormFactor = Enum.FormFactor.Custom | |
1794 | p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048) | |
1795 | p12.CFrame = CFrame.new(69.47966, 8.73308277, -14.2467909, 0.176576898, -0.984305978, 0.022559464, 0.951990068, 0.164877579, -0.257825077, 0.25006038, 0.0670051575, 0.966151059) | |
1796 | p12.CanCollide = false | |
1797 | p12.Locked = true | |
1798 | p12.BottomSurface = Enum.SurfaceType.Smooth | |
1799 | p12.TopSurface = Enum.SurfaceType.Smooth | |
1800 | p13 = Instance.new("Part", m) | |
1801 | p13.BrickColor = BrickColor.new("Bright blue") | |
1802 | p13.Material = Enum.Material.Neon | |
1803 | p13.FormFactor = Enum.FormFactor.Custom | |
1804 | p13.Size = Vector3.new(1.5, 1.5, 1.5) | |
1805 | p13.CFrame = CFrame.new(69.3920746, 10.1993351, -13.2118578, 1.00028241, 1.27716921e-005, -1.06170774e-006, -1.99186616e-005, 0.999970496, 2.39908695e-006, -1.93528831e-006, 2.38418579e-006, 1.00024128) | |
1806 | p13.CanCollide = false | |
1807 | p13.Locked = true | |
1808 | p13.BottomSurface = Enum.SurfaceType.Smooth | |
1809 | p13.TopSurface = Enum.SurfaceType.Smooth | |
1810 | b10 = Instance.new("SpecialMesh", p13) | |
1811 | b10.MeshType = Enum.MeshType.Sphere | |
1812 | b10.Name = "Mesh" | |
1813 | p14 = Instance.new("Part", m) | |
1814 | - | p14.BrickColor = BrickColor.new("Really black") |
1814 | + | p14.BrickColor = BrickColor.new("Lime green") |
1815 | p14.Material = Enum.Material.Metal | |
1816 | p14.Name = "Main" | |
1817 | p14.FormFactor = Enum.FormFactor.Custom | |
1818 | p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005) | |
1819 | p14.CFrame = CFrame.new(69.4298401, 8.19937706, -13.1668339, 1.00029147, 1.25630004e-005, -1.16605349e-006, -2.0008245e-005, 0.999969125, 2.41400744e-006, -2.03963987e-006, 2.39908786e-006, 1.00024867) | |
1820 | p14.CanCollide = false | |
1821 | p14.Locked = true | |
1822 | p14.BottomSurface = Enum.SurfaceType.Smooth | |
1823 | p14.TopSurface = Enum.SurfaceType.Smooth | |
1824 | p15 = Instance.new("Part", m) | |
1825 | - | p15.BrickColor = BrickColor.new("Really black") |
1825 | + | p15.BrickColor = BrickColor.new("Lime green") |
1826 | p15.Material = Enum.Material.Neon | |
1827 | p15.FormFactor = Enum.FormFactor.Custom | |
1828 | p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1829 | p15.CFrame = CFrame.new(69.1303406, 7.89936399, -14.2672224, 1.00030053, 1.24437429e-005, -1.24804228e-006, -2.02170359e-005, 0.999968052, 2.45872889e-006, -2.07692119e-006, 2.48851507e-006, 1.00025606) | |
1830 | p15.CanCollide = false | |
1831 | p15.Locked = true | |
1832 | p15.BottomSurface = Enum.SurfaceType.Smooth | |
1833 | p15.TopSurface = Enum.SurfaceType.Smooth | |
1834 | b11 = Instance.new("SpecialMesh", p15) | |
1835 | b11.MeshType = Enum.MeshType.Sphere | |
1836 | b11.Name = "Mesh" | |
1837 | p16 = Instance.new("Part", m) | |
1838 | p16.BrickColor = BrickColor.new("Bright blue") | |
1839 | p16.Material = Enum.Material.Neon | |
1840 | p16.FormFactor = Enum.FormFactor.Custom | |
1841 | p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048) | |
1842 | p16.CFrame = CFrame.new(68.9101486, 8.4345789, -14.2572756, 0.881372392, -0.429496199, -0.198331535, 0.401431859, 0.900618315, -0.166353673, 0.250065029, 0.0670081601, 0.966180325) | |
1843 | p16.CanCollide = false | |
1844 | p16.Locked = true | |
1845 | p16.BottomSurface = Enum.SurfaceType.Smooth | |
1846 | p16.TopSurface = Enum.SurfaceType.Smooth | |
1847 | p17 = Instance.new("Part", m) | |
1848 | p17.BrickColor = BrickColor.new("Bright blue") | |
1849 | p17.Material = Enum.Material.Neon | |
1850 | p17.FormFactor = Enum.FormFactor.Custom | |
1851 | p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048) | |
1852 | p17.CFrame = CFrame.new(68.8972092, 7.71862125, -14.2674294, -0.70732069, -0.707330942, -1.25169754e-006, 0.707094371, -0.707072854, 2.48849392e-006, 3.42912972e-006, -4.32133675e-007, 1.00026357) | |
1853 | p17.CanCollide = false | |
1854 | p17.Locked = true | |
1855 | p17.BottomSurface = Enum.SurfaceType.Smooth | |
1856 | p17.TopSurface = Enum.SurfaceType.Smooth | |
1857 | p18 = Instance.new("Part", m) | |
1858 | - | p18.BrickColor = BrickColor.new("Really black") |
1858 | + | p18.BrickColor = BrickColor.new("Lime green") |
1859 | p18.Material = Enum.Material.Neon | |
1860 | p18.FormFactor = Enum.FormFactor.Custom | |
1861 | p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1862 | p18.CFrame = CFrame.new(68.6320877, 8.89929676, -14.2675419, 1.000319, 7.09295273e-006, -1.29642399e-006, -1.53779984e-005, 0.999966145, 2.53321537e-006, -2.20864695e-006, 2.76013293e-006, 1.00027096) | |
1863 | p18.CanCollide = false | |
1864 | p18.Locked = true | |
1865 | p18.BottomSurface = Enum.SurfaceType.Smooth | |
1866 | p18.TopSurface = Enum.SurfaceType.Smooth | |
1867 | b12 = Instance.new("SpecialMesh", p18) | |
1868 | b12.MeshType = Enum.MeshType.Sphere | |
1869 | b12.Name = "Mesh" | |
1870 | p19 = Instance.new("Part", m) | |
1871 | - | p19.BrickColor = BrickColor.new("Really black") |
1871 | + | p19.BrickColor = BrickColor.new("Lime green") |
1872 | p19.Material = Enum.Material.Neon | |
1873 | p19.FormFactor = Enum.FormFactor.Custom | |
1874 | p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
1875 | p19.CFrame = CFrame.new(68.6320801, 7.49934578, -14.2675457, 1.00032365, 7.02587113e-006, -1.41567671e-006, -1.53780693e-005, 0.999965429, 2.48852461e-006, -2.20865695e-006, 2.76013111e-006, 1.00027466) | |
1876 | p19.CanCollide = false | |
1877 | p19.Locked = true | |
1878 | p19.BottomSurface = Enum.SurfaceType.Smooth | |
1879 | p19.TopSurface = Enum.SurfaceType.Smooth | |
1880 | b13 = Instance.new("SpecialMesh", p19) | |
1881 | b13.MeshType = Enum.MeshType.Sphere | |
1882 | b13.Name = "Mesh" | |
1883 | w1 = Instance.new("Weld", p1) | |
1884 | w1.Name = "Wedge_Weld" | |
1885 | w1.Part0 = p1 | |
1886 | w1.C0 = CFrame.new(-13.7623348, 36.7341995, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.9372038e-008) | |
1887 | w1.Part1 = p2 | |
1888 | w1.C1 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008) | |
1889 | w2 = Instance.new("Weld", p2) | |
1890 | w2.Name = "Wedge_Weld" | |
1891 | w2.Part0 = p2 | |
1892 | w2.C0 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008) | |
1893 | w2.Part1 = p3 | |
1894 | w2.C1 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008) | |
1895 | w3 = Instance.new("Weld", p3) | |
1896 | w3.Name = "Wedge_Weld" | |
1897 | w3.Part0 = p3 | |
1898 | w3.C0 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008) | |
1899 | w3.Part1 = p4 | |
1900 | w3.C1 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008) | |
1901 | w4 = Instance.new("Weld", p4) | |
1902 | w4.Name = "Wedge_Weld" | |
1903 | w4.Part0 = p4 | |
1904 | w4.C0 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008) | |
1905 | w4.Part1 = p5 | |
1906 | w4.C1 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008) | |
1907 | w5 = Instance.new("Weld", p5) | |
1908 | w5.Name = "Wedge_Weld" | |
1909 | w5.Part0 = p5 | |
1910 | w5.C0 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008) | |
1911 | w5.Part1 = p6 | |
1912 | w5.C1 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008) | |
1913 | w6 = Instance.new("Weld", p6) | |
1914 | w6.Name = "Part_Weld" | |
1915 | w6.Part0 = p6 | |
1916 | w6.C0 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008) | |
1917 | w6.Part1 = p7 | |
1918 | w6.C1 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1) | |
1919 | w7 = Instance.new("Weld", p7) | |
1920 | w7.Name = "Part_Weld" | |
1921 | w7.Part0 = p7 | |
1922 | w7.C0 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1) | |
1923 | w7.Part1 = p8 | |
1924 | w7.C1 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449) | |
1925 | w8 = Instance.new("Weld", p8) | |
1926 | w8.Name = "Part_Weld" | |
1927 | w8.Part0 = p8 | |
1928 | w8.C0 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449) | |
1929 | w8.Part1 = p9 | |
1930 | w8.C1 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037) | |
1931 | w9 = Instance.new("Weld", p9) | |
1932 | w9.Name = "Part_Weld" | |
1933 | w9.Part0 = p9 | |
1934 | w9.C0 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037) | |
1935 | w9.Part1 = p10 | |
1936 | w9.C1 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037) | |
1937 | w10 = Instance.new("Weld", p10) | |
1938 | w10.Name = "Part_Weld" | |
1939 | w10.Part0 = p10 | |
1940 | w10.C0 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037) | |
1941 | w10.Part1 = p11 | |
1942 | w10.C1 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449) | |
1943 | w11 = Instance.new("Weld", p11) | |
1944 | w11.Name = "Part_Weld" | |
1945 | w11.Part0 = p11 | |
1946 | w11.C0 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449) | |
1947 | w11.Part1 = p12 | |
1948 | w11.C1 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389) | |
1949 | w12 = Instance.new("Weld", p12) | |
1950 | w12.Name = "Part_Weld" | |
1951 | w12.Part0 = p12 | |
1952 | w12.C0 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389) | |
1953 | w12.Part1 = p13 | |
1954 | w12.C1 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037) | |
1955 | w13 = Instance.new("Weld", p13) | |
1956 | w13.Name = "Part_Weld" | |
1957 | w13.Part0 = p13 | |
1958 | w13.C0 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037) | |
1959 | w13.Part1 = p14 | |
1960 | w13.C1 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037) | |
1961 | w14 = Instance.new("Weld", p14) | |
1962 | w14.Name = "Part_Weld" | |
1963 | w14.Part0 = p14 | |
1964 | w14.C0 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037) | |
1965 | w14.Part1 = p15 | |
1966 | w14.C1 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037) | |
1967 | w15 = Instance.new("Weld", p15) | |
1968 | w15.Name = "Part_Weld" | |
1969 | w15.Part0 = p15 | |
1970 | w15.C0 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037) | |
1971 | w15.Part1 = p16 | |
1972 | w15.C1 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389) | |
1973 | w16 = Instance.new("Weld", p16) | |
1974 | w16.Name = "Part_Weld" | |
1975 | w16.Part0 = p16 | |
1976 | w16.C0 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389) | |
1977 | w16.Part1 = p17 | |
1978 | w16.C1 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037) | |
1979 | w17 = Instance.new("Weld", p17) | |
1980 | w17.Name = "Part_Weld" | |
1981 | w17.Part0 = p17 | |
1982 | w17.C0 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037) | |
1983 | w17.Part1 = p18 | |
1984 | w17.C1 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037) | |
1985 | w18 = Instance.new("Weld", p18) | |
1986 | w18.Name = "Part_Weld" | |
1987 | w18.Part0 = p18 | |
1988 | w18.C0 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037) | |
1989 | w18.Part1 = p19 | |
1990 | w18.C1 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1) | |
1991 | w19 = Instance.new("Weld", p19) | |
1992 | w19.Name = "Wedge_Weld" | |
1993 | w19.Part0 = p19 | |
1994 | w19.C0 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1) | |
1995 | m.Parent = rarm | |
1996 | m:MakeJoints() | |
1997 | ---------------------------------------------------- | |
1998 | local cor4 = Instance.new("Part", rarm.RightArm) | |
1999 | cor4.Name = "Thingy" | |
2000 | cor4.Locked = true | |
2001 | cor4.BottomSurface = 0 | |
2002 | cor4.CanCollide = false | |
2003 | cor4.Size = Vector3.new(2, 1, 1) | |
2004 | cor4.Transparency = 1 | |
2005 | cor4.TopSurface = 0 | |
2006 | corw2 = Instance.new("Weld", cor4) | |
2007 | corw2.Part0 = rarm | |
2008 | corw2.Part1 = cor4 | |
2009 | corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)) | |
2010 | corw2.C1 = CFrame.new(0, 0, 0) | |
2011 | weld2 = Instance.new("Weld", rarm.RightArm) | |
2012 | weld2.Part0 = cor4 | |
2013 | weld2.Part1 = p14 | |
2014 | weld2.C0 = CFrame.new(0, 0, 0) | |
2015 | ---------------------------------------------------- | |
2016 | local m = Instance.new("Model") | |
2017 | m.Name = "Torso" | |
2018 | p1 = Instance.new("Part", m) | |
2019 | - | p1.BrickColor = BrickColor.new("Really black") |
2019 | + | p1.BrickColor = BrickColor.new("Lime green") |
2020 | p1.Material = Enum.Material.Neon | |
2021 | p1.FormFactor = Enum.FormFactor.Custom | |
2022 | p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2023 | p1.CFrame = CFrame.new(67.3119202, 9.5997963, -14.263937, 1.00006402, 1.86259939e-007, 2.23464554e-008, -1.44914884e-006, 0.999991, -1.49014099e-008, -1.51248571e-006, 5.96053269e-008, 1.00005186) | |
2024 | p1.CanCollide = false | |
2025 | p1.Locked = true | |
2026 | p1.BottomSurface = Enum.SurfaceType.Smooth | |
2027 | p1.TopSurface = Enum.SurfaceType.Smooth | |
2028 | b1 = Instance.new("SpecialMesh", p1) | |
2029 | b1.MeshType = Enum.MeshType.Sphere | |
2030 | b1.Name = "Mesh" | |
2031 | p2 = Instance.new("Part", m) | |
2032 | - | p2.BrickColor = BrickColor.new("Really black") |
2032 | + | p2.BrickColor = BrickColor.new("Lime green") |
2033 | p2.Material = Enum.Material.Neon | |
2034 | p2.FormFactor = Enum.FormFactor.Custom | |
2035 | p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2036 | p2.CFrame = CFrame.new(65.0111618, 9.59981537, -14.2638226, 1.00005496, 2.75671482e-007, 1.2665987e-007, -1.35973096e-006, 0.999992192, -2.98023224e-008, -1.40815973e-006, 4.47034836e-008, 1.00004447) | |
2037 | p2.CanCollide = false | |
2038 | p2.Locked = true | |
2039 | p2.BottomSurface = Enum.SurfaceType.Smooth | |
2040 | p2.TopSurface = Enum.SurfaceType.Smooth | |
2041 | b2 = Instance.new("SpecialMesh", p2) | |
2042 | b2.MeshType = Enum.MeshType.Sphere | |
2043 | b2.Name = "Mesh" | |
2044 | p3 = Instance.new("Part", m) | |
2045 | p3.BrickColor = BrickColor.new("Bright blue") | |
2046 | p3.Material = Enum.Material.Neon | |
2047 | p3.FormFactor = Enum.FormFactor.Custom | |
2048 | p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048) | |
2049 | p3.CFrame = CFrame.new(67.6028595, 9.39744663, -14.2168236, 0.491504252, -0.868347466, -0.0669902489, 0.834227681, 0.491479307, -0.249998316, 0.250008702, 0.0669909269, 0.965961695) | |
2050 | p3.CanCollide = false | |
2051 | p3.Locked = true | |
2052 | p3.BottomSurface = Enum.SurfaceType.Smooth | |
2053 | p3.TopSurface = Enum.SurfaceType.Smooth | |
2054 | p4 = Instance.new("Part", m) | |
2055 | p4.BrickColor = BrickColor.new("Bright blue") | |
2056 | p4.Material = Enum.Material.Neon | |
2057 | p4.FormFactor = Enum.FormFactor.Custom | |
2058 | p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048) | |
2059 | p4.CFrame = CFrame.new(64.6849442, 9.10655022, -14.2635975, 0.866056859, 0.500018656, 3.35280106e-007, -0.49999845, 0.866020203, -2.98035943e-008, -1.06866298e-006, -5.48167122e-007, 1.00002968) | |
2060 | p4.CanCollide = false | |
2061 | p4.Locked = true | |
2062 | p4.BottomSurface = Enum.SurfaceType.Smooth | |
2063 | p4.TopSurface = Enum.SurfaceType.Smooth | |
2064 | p5 = Instance.new("Part", m) | |
2065 | p5.BrickColor = BrickColor.new("Bright blue") | |
2066 | p5.Material = Enum.Material.Neon | |
2067 | p5.FormFactor = Enum.FormFactor.Custom | |
2068 | p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048) | |
2069 | p5.CFrame = CFrame.new(66.9344177, 8.96636868, -14.2634897, -0.866048932, -0.500014246, 4.3958832e-007, 0.499999046, -0.866021395, -4.47044108e-008, 9.70867745e-007, 5.08911796e-007, 1.00002229) | |
2070 | p5.CanCollide = false | |
2071 | p5.Locked = true | |
2072 | p5.BottomSurface = Enum.SurfaceType.Smooth | |
2073 | p5.TopSurface = Enum.SurfaceType.Smooth | |
2074 | p6 = Instance.new("Part", m) | |
2075 | p6.BrickColor = BrickColor.new("Bright blue") | |
2076 | p6.Material = Enum.Material.Neon | |
2077 | p6.FormFactor = Enum.FormFactor.Custom | |
2078 | p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048) | |
2079 | p6.CFrame = CFrame.new(65.358757, 9.04366112, -14.2633762, -0.866041601, 0.500008702, 5.43894771e-007, -0.499997824, -0.8660236, -5.96051208e-008, 8.43271948e-007, -5.21275751e-007, 1.0000149) | |
2080 | p6.CanCollide = false | |
2081 | p6.Locked = true | |
2082 | p6.BottomSurface = Enum.SurfaceType.Smooth | |
2083 | p6.TopSurface = Enum.SurfaceType.Smooth | |
2084 | p7 = Instance.new("Part", m) | |
2085 | - | p7.BrickColor = BrickColor.new("Really black") |
2085 | + | p7.BrickColor = BrickColor.new("Lime green") |
2086 | p7.Material = Enum.Material.Neon | |
2087 | p7.FormFactor = Enum.FormFactor.Custom | |
2088 | p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2089 | p7.CFrame = CFrame.new(68.0082169, 9.19989014, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308121e-007, -8.7916851e-007, 5.96046519e-008, 1.00001121) | |
2090 | p7.CanCollide = false | |
2091 | p7.Locked = true | |
2092 | p7.BottomSurface = Enum.SurfaceType.Smooth | |
2093 | p7.TopSurface = Enum.SurfaceType.Smooth | |
2094 | b3 = Instance.new("SpecialMesh", p7) | |
2095 | b3.MeshType = Enum.MeshType.Sphere | |
2096 | b3.Name = "Mesh" | |
2097 | p8 = Instance.new("Part", m) | |
2098 | - | p8.BrickColor = BrickColor.new("Really black") |
2098 | + | p8.BrickColor = BrickColor.new("Lime green") |
2099 | p8.Material = Enum.Material.Neon | |
2100 | p8.FormFactor = Enum.FormFactor.Custom | |
2101 | p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2102 | p8.CFrame = CFrame.new(64.4081497, 8.59989357, -14.2632627, 1.00001383, 5.32715489e-007, 5.6624458e-007, -8.4191629e-007, 0.999997973, -2.980277e-008, -9.08971174e-007, -1.4901623e-008, 1.00001121) | |
2103 | p8.CanCollide = false | |
2104 | p8.Locked = true | |
2105 | p8.BottomSurface = Enum.SurfaceType.Smooth | |
2106 | p8.TopSurface = Enum.SurfaceType.Smooth | |
2107 | b4 = Instance.new("SpecialMesh", p8) | |
2108 | b4.MeshType = Enum.MeshType.Sphere | |
2109 | b4.Name = "Mesh" | |
2110 | p9 = Instance.new("Part", m) | |
2111 | - | p9.BrickColor = BrickColor.new("Really black") |
2111 | + | p9.BrickColor = BrickColor.new("Lime green") |
2112 | p9.Material = Enum.Material.Neon | |
2113 | p9.FormFactor = Enum.FormFactor.Custom | |
2114 | p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2115 | p9.CFrame = CFrame.new(67.8082123, 8.49989128, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308128e-007, -8.7916851e-007, 5.96046448e-008, 1.00001121) | |
2116 | p9.CanCollide = false | |
2117 | p9.Locked = true | |
2118 | p9.BottomSurface = Enum.SurfaceType.Smooth | |
2119 | p9.TopSurface = Enum.SurfaceType.Smooth | |
2120 | b5 = Instance.new("SpecialMesh", p9) | |
2121 | b5.MeshType = Enum.MeshType.Sphere | |
2122 | b5.Name = "Mesh" | |
2123 | p10 = Instance.new("Part", m) | |
2124 | p10.BrickColor = BrickColor.new("Bright blue") | |
2125 | p10.Material = Enum.Material.Neon | |
2126 | p10.FormFactor = Enum.FormFactor.Custom | |
2127 | p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048) | |
2128 | p10.CFrame = CFrame.new(67.3000946, 8.34052181, -14.1962805, -0.323144197, -0.934642911, 0.148454338, 0.912730813, -0.349243045, -0.212012067, 0.250002205, 0.0669885725, 0.965932906) | |
2129 | p10.CanCollide = false | |
2130 | p10.Locked = true | |
2131 | p10.BottomSurface = Enum.SurfaceType.Smooth | |
2132 | p10.TopSurface = Enum.SurfaceType.Smooth | |
2133 | p11 = Instance.new("Part", m) | |
2134 | - | p11.BrickColor = BrickColor.new("Really black") |
2134 | + | p11.BrickColor = BrickColor.new("Lime green") |
2135 | p11.Material = Enum.Material.Metal | |
2136 | p11.Name = "Main" | |
2137 | p11.FormFactor = Enum.FormFactor.Custom | |
2138 | p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005) | |
2139 | p11.CFrame = CFrame.new(66.1075974, 8.19991207, -13.1631384, 1, 7.67355459e-007, 7.5990539e-007, -7.67355459e-007, 1, -2.98022478e-008, -7.5990539e-007, 2.98016651e-008, 1) | |
2140 | p11.CanCollide = false | |
2141 | p11.Locked = true | |
2142 | p11.BottomSurface = Enum.SurfaceType.Smooth | |
2143 | p11.TopSurface = Enum.SurfaceType.Smooth | |
2144 | p12 = Instance.new("Part", m) | |
2145 | - | p12.BrickColor = BrickColor.new("Really black") |
2145 | + | p12.BrickColor = BrickColor.new("Lime green") |
2146 | p12.Material = Enum.Material.Neon | |
2147 | p12.FormFactor = Enum.FormFactor.Custom | |
2148 | p12.Size = Vector3.new(3, 3, 2) | |
2149 | p12.CFrame = CFrame.new(66.1075974, 8.19991302, -13.5631437, 1.00000453, 6.48145658e-007, 6.55599706e-007, -7.97160624e-007, 0.999999344, -1.49012251e-008, -7.5990863e-007, 2.98017362e-008, 1.0000037) | |
2150 | p12.CanCollide = false | |
2151 | p12.Locked = true | |
2152 | p12.BottomSurface = Enum.SurfaceType.Smooth | |
2153 | p12.TopSurface = Enum.SurfaceType.Smooth | |
2154 | b6 = Instance.new("SpecialMesh", p12) | |
2155 | b6.MeshType = Enum.MeshType.Sphere | |
2156 | b6.Name = "Mesh" | |
2157 | p13 = Instance.new("Part", m) | |
2158 | p13.BrickColor = BrickColor.new("Bright blue") | |
2159 | p13.Material = Enum.Material.Neon | |
2160 | p13.FormFactor = Enum.FormFactor.Custom | |
2161 | p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048) | |
2162 | p13.CFrame = CFrame.new(66.1331863, 7.82621098, -12.0632286, 6.04434092e-007, -1.00000906, 6.55602378e-007, 0.999998689, 8.72662156e-007, -1.49012802e-008, 4.47028583e-008, 8.64220965e-007, 1.00000739) | |
2163 | p13.CanCollide = false | |
2164 | p13.Locked = true | |
2165 | p13.BottomSurface = Enum.SurfaceType.Smooth | |
2166 | p13.TopSurface = Enum.SurfaceType.Smooth | |
2167 | p14 = Instance.new("Part", m) | |
2168 | p14.BrickColor = BrickColor.new("Bright blue") | |
2169 | p14.Material = Enum.Material.Neon | |
2170 | p14.FormFactor = Enum.FormFactor.Custom | |
2171 | p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048) | |
2172 | p14.CFrame = CFrame.new(65.0837555, 8.11279583, -12.0633221, 0.866040885, 0.500009477, 5.5129766e-007, -0.499999583, 0.866022587, -2.09610107e-013, -8.68580742e-007, -4.3265041e-007, 1.00001478) | |
2173 | p14.CanCollide = false | |
2174 | p14.Locked = true | |
2175 | p14.BottomSurface = Enum.SurfaceType.Smooth | |
2176 | p14.TopSurface = Enum.SurfaceType.Smooth | |
2177 | p15 = Instance.new("Part", m) | |
2178 | p15.BrickColor = BrickColor.new("Bright blue") | |
2179 | p15.Material = Enum.Material.Neon | |
2180 | p15.FormFactor = Enum.FormFactor.Custom | |
2181 | p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048) | |
2182 | p15.CFrame = CFrame.new(67.0844116, 8.11277008, -12.0634222, 0.866049111, -0.500013351, 4.46991237e-007, 0.49999693, 0.866022587, 1.49009658e-008, -8.91868751e-007, 6.00952262e-007, 1.00002217) | |
2183 | p15.CanCollide = false | |
2184 | p15.Locked = true | |
2185 | p15.BottomSurface = Enum.SurfaceType.Smooth | |
2186 | p15.TopSurface = Enum.SurfaceType.Smooth | |
2187 | p16 = Instance.new("Part", m) | |
2188 | p16.BrickColor = BrickColor.new("Bright blue") | |
2189 | p16.Material = Enum.Material.Neon | |
2190 | p16.FormFactor = Enum.FormFactor.Custom | |
2191 | p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048) | |
2192 | p16.CFrame = CFrame.new(65.484314, 7.30655766, -14.2634888, 0.906336308, 0.422632158, 3.49386681e-007, -0.422617853, 0.906302929, 2.46360354e-008, -1.01209048e-006, -3.84037776e-007, 1.00002587) | |
2193 | p16.CanCollide = false | |
2194 | p16.Locked = true | |
2195 | p16.BottomSurface = Enum.SurfaceType.Smooth | |
2196 | p16.TopSurface = Enum.SurfaceType.Smooth | |
2197 | p17 = Instance.new("Part", m) | |
2198 | p17.BrickColor = BrickColor.new("Bright blue") | |
2199 | p17.Material = Enum.Material.Neon | |
2200 | p17.FormFactor = Enum.FormFactor.Custom | |
2201 | p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048) | |
2202 | p17.CFrame = CFrame.new(67.1100159, 7.10342312, -14.2635927, 0.866056919, -0.50001812, 3.65035532e-007, 0.499996245, 0.866021872, 5.96044032e-008, -8.79435504e-007, 6.97014912e-007, 1.00002956) | |
2203 | p17.CanCollide = false | |
2204 | p17.Locked = true | |
2205 | p17.BottomSurface = Enum.SurfaceType.Smooth | |
2206 | p17.TopSurface = Enum.SurfaceType.Smooth | |
2207 | p18 = Instance.new("Part", m) | |
2208 | p18.BrickColor = BrickColor.new("Bright blue") | |
2209 | p18.Material = Enum.Material.Neon | |
2210 | p18.FormFactor = Enum.FormFactor.Custom | |
2211 | p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048) | |
2212 | p18.CFrame = CFrame.new(65.6104889, 7.05342484, -14.2637053, -0.707138717, -0.707138956, 3.36865924e-007, 0.707104087, -0.707101464, 1.4901164e-007, 9.95719802e-007, 5.95316749e-007, 1.00003707) | |
2213 | p18.CanCollide = false | |
2214 | p18.Locked = true | |
2215 | p18.BottomSurface = Enum.SurfaceType.Smooth | |
2216 | p18.TopSurface = Enum.SurfaceType.Smooth | |
2217 | p19 = Instance.new("Part", m) | |
2218 | - | p19.BrickColor = BrickColor.new("Really black") |
2218 | + | p19.BrickColor = BrickColor.new("Lime green") |
2219 | p19.Material = Enum.Material.Neon | |
2220 | p19.FormFactor = Enum.FormFactor.Custom | |
2221 | p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2222 | p19.CFrame = CFrame.new(65.2110596, 6.69982004, -14.2638168, 1.00005388, -1.78813906e-007, 3.08695888e-007, -1.7285347e-006, 0.999993682, 2.38419489e-007, -1.15321473e-006, 3.72538381e-007, 1.0000447) | |
2223 | p19.CanCollide = false | |
2224 | p19.Locked = true | |
2225 | p19.BottomSurface = Enum.SurfaceType.Smooth | |
2226 | p19.TopSurface = Enum.SurfaceType.Smooth | |
2227 | b7 = Instance.new("SpecialMesh", p19) | |
2228 | b7.MeshType = Enum.MeshType.Sphere | |
2229 | b7.Name = "Mesh" | |
2230 | p20 = Instance.new("Part", m) | |
2231 | - | p20.BrickColor = BrickColor.new("Really black") |
2231 | + | p20.BrickColor = BrickColor.new("Lime green") |
2232 | p20.Material = Enum.Material.Neon | |
2233 | p20.FormFactor = Enum.FormFactor.Custom | |
2234 | p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2235 | p20.CFrame = CFrame.new(66.7116928, 6.49980783, -14.2639294, 1.00006235, -2.98028993e-007, 2.80525398e-007, -1.8477574e-006, 0.999992907, 3.27827962e-007, -1.18139712e-006, 4.61949412e-007, 1.00005233) | |
2236 | p20.CanCollide = false | |
2237 | p20.Locked = true | |
2238 | p20.BottomSurface = Enum.SurfaceType.Smooth | |
2239 | p20.TopSurface = Enum.SurfaceType.Smooth | |
2240 | b8 = Instance.new("SpecialMesh", p20) | |
2241 | b8.MeshType = Enum.MeshType.Sphere | |
2242 | b8.Name = "Mesh" | |
2243 | p21 = Instance.new("Part", m) | |
2244 | p21.BrickColor = BrickColor.new("Bright blue") | |
2245 | p21.Material = Enum.Material.Neon | |
2246 | p21.FormFactor = Enum.FormFactor.Custom | |
2247 | p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048) | |
2248 | p21.CFrame = CFrame.new(67.0623169, 6.40337944, -14.264039, 0.258836836, -0.965994418, 2.52354425e-007, 0.965917706, 0.258818805, 4.17237061e-007, 2.19511691e-007, 1.31106742e-006, 1.00005996) | |
2249 | p21.CanCollide = false | |
2250 | p21.Locked = true | |
2251 | p21.BottomSurface = Enum.SurfaceType.Smooth | |
2252 | p21.TopSurface = Enum.SurfaceType.Smooth | |
2253 | p22 = Instance.new("Part", m) | |
2254 | - | p22.BrickColor = BrickColor.new("Really black") |
2254 | + | p22.BrickColor = BrickColor.new("Lime green") |
2255 | p22.Material = Enum.Material.Neon | |
2256 | p22.FormFactor = Enum.FormFactor.Custom | |
2257 | p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2258 | p22.CFrame = CFrame.new(67.5129166, 6.29977846, -14.2641516, 1.00007939, -5.96046448e-007, 2.24182997e-007, -2.14576721e-006, 0.999991298, 5.06646757e-007, -1.23776351e-006, 6.40773351e-007, 1.00006759) | |
2259 | p22.CanCollide = false | |
2260 | p22.Locked = true | |
2261 | p22.BottomSurface = Enum.SurfaceType.Smooth | |
2262 | p22.TopSurface = Enum.SurfaceType.Smooth | |
2263 | b9 = Instance.new("SpecialMesh", p22) | |
2264 | b9.MeshType = Enum.MeshType.Sphere | |
2265 | b9.Name = "Mesh" | |
2266 | w1 = Instance.new("Weld", p1) | |
2267 | w1.Name = "Part_Weld" | |
2268 | w1.Part0 = p1 | |
2269 | w1.C0 = CFrame.new(-67.3029404, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037) | |
2270 | w1.Part1 = p2 | |
2271 | w1.C1 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037) | |
2272 | w2 = Instance.new("Weld", p2) | |
2273 | w2.Name = "Part_Weld" | |
2274 | w2.Part0 = p2 | |
2275 | w2.C0 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037) | |
2276 | w2.Part1 = p3 | |
2277 | w2.C1 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389) | |
2278 | w3 = Instance.new("Weld", p3) | |
2279 | w3.Name = "Part_Weld" | |
2280 | w3.Part0 = p3 | |
2281 | w3.C0 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389) | |
2282 | w3.Part1 = p4 | |
2283 | w3.C1 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037) | |
2284 | w4 = Instance.new("Weld", p4) | |
2285 | w4.Name = "Part_Weld" | |
2286 | w4.Part0 = p4 | |
2287 | w4.C0 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037) | |
2288 | w4.Part1 = p5 | |
2289 | w4.C1 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037) | |
2290 | w5 = Instance.new("Weld", p5) | |
2291 | w5.Name = "Part_Weld" | |
2292 | w5.Part0 = p5 | |
2293 | w5.C0 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037) | |
2294 | w5.Part1 = p6 | |
2295 | w5.C1 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037) | |
2296 | w6 = Instance.new("Weld", p6) | |
2297 | w6.Name = "Part_Weld" | |
2298 | w6.Part0 = p6 | |
2299 | w6.C0 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037) | |
2300 | w6.Part1 = p7 | |
2301 | w6.C1 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1) | |
2302 | w7 = Instance.new("Weld", p7) | |
2303 | w7.Name = "Part_Weld" | |
2304 | w7.Part0 = p7 | |
2305 | w7.C0 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1) | |
2306 | w7.Part1 = p8 | |
2307 | w7.C1 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1) | |
2308 | w8 = Instance.new("Weld", p8) | |
2309 | w8.Name = "Part_Weld" | |
2310 | w8.Part0 = p8 | |
2311 | w8.C0 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1) | |
2312 | w8.Part1 = p9 | |
2313 | w8.C1 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1) | |
2314 | w9 = Instance.new("Weld", p9) | |
2315 | w9.Name = "Part_Weld" | |
2316 | w9.Part0 = p9 | |
2317 | w9.C0 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1) | |
2318 | w9.Part1 = p10 | |
2319 | w9.C1 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449) | |
2320 | w10 = Instance.new("Weld", p10) | |
2321 | w10.Name = "Main_Weld" | |
2322 | w10.Part0 = p10 | |
2323 | w10.C0 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449) | |
2324 | w10.Part1 = p11 | |
2325 | w10.C1 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037) | |
2326 | w11 = Instance.new("Weld", p11) | |
2327 | w11.Name = "Part_Weld" | |
2328 | w11.Part0 = p11 | |
2329 | w11.C0 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037) | |
2330 | w11.Part1 = p12 | |
2331 | w11.C1 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1) | |
2332 | w12 = Instance.new("Weld", p12) | |
2333 | w12.Name = "Part_Weld" | |
2334 | w12.Part0 = p12 | |
2335 | w12.C0 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1) | |
2336 | w12.Part1 = p13 | |
2337 | w12.C1 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037) | |
2338 | w13 = Instance.new("Weld", p13) | |
2339 | w13.Name = "Part_Weld" | |
2340 | w13.Part0 = p13 | |
2341 | w13.C0 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037) | |
2342 | w13.Part1 = p14 | |
2343 | w13.C1 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037) | |
2344 | w14 = Instance.new("Weld", p14) | |
2345 | w14.Name = "Part_Weld" | |
2346 | w14.Part0 = p14 | |
2347 | w14.C0 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037) | |
2348 | w14.Part1 = p15 | |
2349 | w14.C1 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037) | |
2350 | w15 = Instance.new("Weld", p15) | |
2351 | w15.Name = "Part_Weld" | |
2352 | w15.Part0 = p15 | |
2353 | w15.C0 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037) | |
2354 | w15.Part1 = p16 | |
2355 | w15.C1 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1) | |
2356 | w16 = Instance.new("Weld", p16) | |
2357 | w16.Name = "Part_Weld" | |
2358 | w16.Part0 = p16 | |
2359 | w16.C0 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1) | |
2360 | w16.Part1 = p17 | |
2361 | w16.C1 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037) | |
2362 | w17 = Instance.new("Weld", p17) | |
2363 | w17.Name = "Part_Weld" | |
2364 | w17.Part0 = p17 | |
2365 | w17.C0 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037) | |
2366 | w17.Part1 = p18 | |
2367 | w17.C1 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2368 | w18 = Instance.new("Weld", p18) | |
2369 | w18.Name = "Part_Weld" | |
2370 | w18.Part0 = p18 | |
2371 | w18.C0 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2372 | w18.Part1 = p19 | |
2373 | w18.C1 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2374 | w19 = Instance.new("Weld", p19) | |
2375 | w19.Name = "Part_Weld" | |
2376 | w19.Part0 = p19 | |
2377 | w19.C0 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2378 | w19.Part1 = p20 | |
2379 | w19.C1 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2380 | w20 = Instance.new("Weld", p20) | |
2381 | w20.Name = "Part_Weld" | |
2382 | w20.Part0 = p20 | |
2383 | w20.C0 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2384 | w20.Part1 = p21 | |
2385 | w20.C1 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2386 | w21 = Instance.new("Weld", p21) | |
2387 | w21.Name = "Part_Weld" | |
2388 | w21.Part0 = p21 | |
2389 | w21.C0 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2390 | w21.Part1 = p22 | |
2391 | w21.C1 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2392 | w22 = Instance.new("Weld", p22) | |
2393 | w22.Name = "Wedge_Weld" | |
2394 | w22.Part0 = p22 | |
2395 | w22.C0 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2396 | m.Parent = torso | |
2397 | m:MakeJoints() | |
2398 | ---------------------------------------------------- | |
2399 | local cor5 = Instance.new("Part", torso.Torso) | |
2400 | cor5.Name = "Thingy" | |
2401 | cor5.Locked = true | |
2402 | cor5.BottomSurface = 0 | |
2403 | cor5.CanCollide = false | |
2404 | cor5.Size = Vector3.new(2, 1, 1) | |
2405 | cor5.Transparency = 1 | |
2406 | cor5.TopSurface = 0 | |
2407 | corw2 = Instance.new("Weld", cor5) | |
2408 | corw2.Part0 = torso | |
2409 | corw2.Part1 = cor5 | |
2410 | corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)) | |
2411 | corw2.C1 = CFrame.new(0, 0, 0) | |
2412 | weld2 = Instance.new("Weld", torso.Torso) | |
2413 | weld2.Part0 = cor5 | |
2414 | weld2.Part1 = p11 | |
2415 | weld2.C0 = CFrame.new(0, 0, 0) | |
2416 | ---------------------------------------------------- | |
2417 | local m = Instance.new("Model") | |
2418 | m.Name = "RightLeg" | |
2419 | p1 = Instance.new("Part", m) | |
2420 | - | p1.BrickColor = BrickColor.new("Really black") |
2420 | + | p1.BrickColor = BrickColor.new("Lime green") |
2421 | p1.Material = Enum.Material.Neon | |
2422 | p1.FormFactor = Enum.FormFactor.Custom | |
2423 | p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2424 | p1.CFrame = CFrame.new(67.2429962, 5.49923229, -14.269578, 1.00045943, -5.51538596e-006, -2.14306033e-006, -7.25689733e-006, 0.999951601, 3.93318305e-006, -2.55180248e-006, 4.05587616e-006, 1.00038624) | |
2425 | p1.CanCollide = false | |
2426 | p1.Locked = true | |
2427 | p1.BottomSurface = Enum.SurfaceType.Smooth | |
2428 | p1.TopSurface = Enum.SurfaceType.Smooth | |
2429 | b1 = Instance.new("SpecialMesh", p1) | |
2430 | b1.MeshType = Enum.MeshType.Sphere | |
2431 | b1.Name = "Mesh" | |
2432 | p2 = Instance.new("Part", m) | |
2433 | - | p2.BrickColor = BrickColor.new("Really black") |
2433 | + | p2.BrickColor = BrickColor.new("Lime green") |
2434 | p2.Material = Enum.Material.Neon | |
2435 | p2.FormFactor = Enum.FormFactor.Custom | |
2436 | p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2437 | p2.CFrame = CFrame.new(67.6437836, 4.79925013, -14.2696915, 1.00046372, -5.51538369e-006, -2.14306829e-006, -7.37613163e-006, 0.999951243, 3.93319806e-006, -2.57999613e-006, 4.14531632e-006, 1.00039005) | |
2438 | p2.CanCollide = false | |
2439 | p2.Locked = true | |
2440 | p2.BottomSurface = Enum.SurfaceType.Smooth | |
2441 | p2.TopSurface = Enum.SurfaceType.Smooth | |
2442 | b2 = Instance.new("SpecialMesh", p2) | |
2443 | b2.MeshType = Enum.MeshType.Sphere | |
2444 | b2.Name = "Mesh" | |
2445 | p3 = Instance.new("Part", m) | |
2446 | p3.BrickColor = BrickColor.new("Bright blue") | |
2447 | p3.Material = Enum.Material.Neon | |
2448 | p3.FormFactor = Enum.FormFactor.Custom | |
2449 | p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048) | |
2450 | p3.CFrame = CFrame.new(66.8881302, 5.17327356, -14.2696877, -0.707441688, -0.707433701, -2.14858301e-006, 0.707077265, -0.707066894, 4.0476084e-006, 4.7538756e-006, -1.07312485e-006, 1.00039387) | |
2451 | p3.CanCollide = false | |
2452 | p3.Locked = true | |
2453 | p3.BottomSurface = Enum.SurfaceType.Smooth | |
2454 | p3.TopSurface = Enum.SurfaceType.Smooth | |
2455 | p4 = Instance.new("Part", m) | |
2456 | - | p4.BrickColor = BrickColor.new("Really black") |
2456 | + | p4.BrickColor = BrickColor.new("Lime green") |
2457 | p4.Material = Enum.Material.Neon | |
2458 | p4.FormFactor = Enum.FormFactor.Custom | |
2459 | p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2460 | p4.CFrame = CFrame.new(66.5432739, 4.7992568, -14.2696896, 1.00046802, -5.54323196e-006, -2.17126149e-006, -7.42077827e-006, 0.999950886, 4.02261594e-006, -2.58000705e-006, 4.14531496e-006, 1.00039387) | |
2461 | p4.CanCollide = false | |
2462 | p4.Locked = true | |
2463 | p4.BottomSurface = Enum.SurfaceType.Smooth | |
2464 | p4.TopSurface = Enum.SurfaceType.Smooth | |
2465 | b3 = Instance.new("SpecialMesh", p4) | |
2466 | b3.MeshType = Enum.MeshType.Sphere | |
2467 | b3.Name = "Mesh" | |
2468 | p5 = Instance.new("Part", m) | |
2469 | p5.BrickColor = BrickColor.new("Bright blue") | |
2470 | p5.Material = Enum.Material.Neon | |
2471 | p5.FormFactor = Enum.FormFactor.Custom | |
2472 | p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048) | |
2473 | p5.CFrame = CFrame.new(67.8495178, 4.41932487, -14.269804, -0.906733274, 0.422823101, -2.17126944e-006, -0.422590762, -0.906265974, 4.0226314e-006, 5.74146384e-007, -4.94026517e-006, 1.00039768) | |
2474 | p5.CanCollide = false | |
2475 | p5.Locked = true | |
2476 | p5.BottomSurface = Enum.SurfaceType.Smooth | |
2477 | p5.TopSurface = Enum.SurfaceType.Smooth | |
2478 | p6 = Instance.new("Part", m) | |
2479 | p6.BrickColor = BrickColor.new("Bright blue") | |
2480 | p6.Material = Enum.Material.Neon | |
2481 | p6.FormFactor = Enum.FormFactor.Custom | |
2482 | p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048) | |
2483 | p6.CFrame = CFrame.new(66.5438004, 4.21363878, -14.2698011, 1.00047636, -7.68899918e-006, -2.17678416e-006, -5.51342964e-006, 0.999950111, 4.13704174e-006, -2.63088032e-006, 4.20975539e-006, 1.0004015) | |
2484 | p6.CanCollide = false | |
2485 | p6.Locked = true | |
2486 | p6.BottomSurface = Enum.SurfaceType.Smooth | |
2487 | p6.TopSurface = Enum.SurfaceType.Smooth | |
2488 | p7 = Instance.new("Part", m) | |
2489 | - | p7.BrickColor = BrickColor.new("Really black") |
2489 | + | p7.BrickColor = BrickColor.new("Lime green") |
2490 | p7.Material = Enum.Material.Metal | |
2491 | p7.Name = "Main" | |
2492 | p7.FormFactor = Enum.FormFactor.Custom | |
2493 | p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005) | |
2494 | p7.CFrame = CFrame.new(67.2447891, 3.99926972, -13.1694622, 1.00048089, -5.69129634e-006, -2.186149e-006, -7.65911773e-006, 0.999949753, 4.1418657e-006, -2.63640663e-006, 4.32419529e-006, 1.00040531) | |
2495 | p7.CanCollide = false | |
2496 | p7.Locked = true | |
2497 | p7.BottomSurface = Enum.SurfaceType.Smooth | |
2498 | p7.TopSurface = Enum.SurfaceType.Smooth | |
2499 | p8 = Instance.new("Part", m) | |
2500 | p8.BrickColor = BrickColor.new("Bright blue") | |
2501 | p8.Material = Enum.Material.Neon | |
2502 | p8.FormFactor = Enum.FormFactor.Custom | |
2503 | p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048) | |
2504 | p8.CFrame = CFrame.new(67.1560593, 4.19274044, -14.2700233, -0.766423643, -0.643097878, -2.21435107e-006, 0.642760634, -0.766000509, 4.23129995e-006, 4.88720252e-006, -1.69966381e-006, 1.00041294) | |
2505 | p8.CanCollide = false | |
2506 | p8.Locked = true | |
2507 | p8.BottomSurface = Enum.SurfaceType.Smooth | |
2508 | p8.TopSurface = Enum.SurfaceType.Smooth | |
2509 | p9 = Instance.new("WedgePart", m) | |
2510 | p9.BrickColor = BrickColor.new("Bright blue") | |
2511 | p9.Material = Enum.Material.Neon | |
2512 | p9.Name = "Wedge" | |
2513 | p9.FormFactor = Enum.FormFactor.Custom | |
2514 | p9.Size = Vector3.new(1, 1.19999981, 4) | |
2515 | p9.CFrame = CFrame.new(67.3460693, 3.49928832, -10.7686377, -1.00049889, -4.27957411e-006, 4.5400966e-006, 8.07642937e-006, 0.906259179, -0.422600418, 2.61850914e-006, -0.422791958, -0.906690836) | |
2516 | p9.CanCollide = false | |
2517 | p9.Locked = true | |
2518 | p9.TopSurface = Enum.SurfaceType.Smooth | |
2519 | b4 = Instance.new("SpecialMesh", p9) | |
2520 | b4.MeshType = Enum.MeshType.Wedge | |
2521 | b4.Name = "Mesh" | |
2522 | b4.Scale = Vector3.new(0.600000024, 1, 1) | |
2523 | p10 = Instance.new("Part", m) | |
2524 | - | p10.BrickColor = BrickColor.new("Really black") |
2524 | + | p10.BrickColor = BrickColor.new("Lime green") |
2525 | p10.Material = Enum.Material.Neon | |
2526 | p10.FormFactor = Enum.FormFactor.Custom | |
2527 | p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2528 | p10.CFrame = CFrame.new(68.0469971, 3.99923301, -14.2702446, 1.00050783, -6.09550762e-006, -2.27330474e-006, -8.07715332e-006, 0.999947786, 4.38094139e-006, -2.69438578e-006, 4.64916229e-006, 1.0004282) | |
2529 | p10.CanCollide = false | |
2530 | p10.Locked = true | |
2531 | p10.BottomSurface = Enum.SurfaceType.Smooth | |
2532 | p10.TopSurface = Enum.SurfaceType.Smooth | |
2533 | b5 = Instance.new("SpecialMesh", p10) | |
2534 | b5.MeshType = Enum.MeshType.Sphere | |
2535 | b5.Name = "Mesh" | |
2536 | p11 = Instance.new("Part", m) | |
2537 | - | p11.BrickColor = BrickColor.new("Really black") |
2537 | + | p11.BrickColor = BrickColor.new("Lime green") |
2538 | p11.Material = Enum.Material.Neon | |
2539 | p11.FormFactor = Enum.FormFactor.Custom | |
2540 | p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2541 | p11.CFrame = CFrame.new(66.5467682, 3.59925723, -14.2703533, 1.00051641, -6.21477238e-006, -2.30150818e-006, -8.22622587e-006, 0.999947011, 4.47037792e-006, -2.72259308e-006, 4.73860473e-006, 1.00043583) | |
2542 | p11.CanCollide = false | |
2543 | p11.Locked = true | |
2544 | p11.BottomSurface = Enum.SurfaceType.Smooth | |
2545 | p11.TopSurface = Enum.SurfaceType.Smooth | |
2546 | b6 = Instance.new("SpecialMesh", p11) | |
2547 | b6.MeshType = Enum.MeshType.Sphere | |
2548 | b6.Name = "Mesh" | |
2549 | p12 = Instance.new("Part", m) | |
2550 | p12.BrickColor = BrickColor.new("Bright blue") | |
2551 | p12.Material = Enum.Material.Neon | |
2552 | p12.FormFactor = Enum.FormFactor.Custom | |
2553 | p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048) | |
2554 | p12.CFrame = CFrame.new(67.558609, 3.39274073, -14.2704687, -0.766450763, -0.643119991, -2.33134415e-006, 0.642759323, -0.765998006, 4.5598149e-006, 5.20550884e-006, -1.92419975e-006, 1.00044346) | |
2555 | p12.CanCollide = false | |
2556 | p12.Locked = true | |
2557 | p12.BottomSurface = Enum.SurfaceType.Smooth | |
2558 | p12.TopSurface = Enum.SurfaceType.Smooth | |
2559 | p13 = Instance.new("Part", m) | |
2560 | - | p13.BrickColor = BrickColor.new("Really black") |
2560 | + | p13.BrickColor = BrickColor.new("Lime green") |
2561 | p13.Material = Enum.Material.Neon | |
2562 | p13.FormFactor = Enum.FormFactor.Custom | |
2563 | p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2564 | p13.CFrame = CFrame.new(67.0482101, 2.79927826, -14.2705812, 1.00053358, -6.43730164e-006, -2.36118058e-006, -8.5234642e-006, 0.999945402, 4.64126742e-006, -2.78064022e-006, 4.90151251e-006, 1.00045109) | |
2565 | p13.CanCollide = false | |
2566 | p13.Locked = true | |
2567 | p13.BottomSurface = Enum.SurfaceType.Smooth | |
2568 | p13.TopSurface = Enum.SurfaceType.Smooth | |
2569 | b7 = Instance.new("SpecialMesh", p13) | |
2570 | b7.MeshType = Enum.MeshType.Sphere | |
2571 | b7.Name = "Mesh" | |
2572 | p14 = Instance.new("WedgePart", m) | |
2573 | p14.BrickColor = BrickColor.new("Bright blue") | |
2574 | p14.Material = Enum.Material.Neon | |
2575 | p14.Name = "Wedge" | |
2576 | p14.FormFactor = Enum.FormFactor.Custom | |
2577 | p14.Size = Vector3.new(1, 0.699999809, 1.29999995) | |
2578 | p14.CFrame = CFrame.new(66.8462448, 2.3492887, -14.7586241, 1.00054216, -6.55656913e-006, -2.38459074e-006, -8.61293847e-006, 0.999944568, 4.66311894e-006, -2.81690609e-006, 5.04259924e-006, 1.00045872) | |
2579 | p14.CanCollide = false | |
2580 | p14.Locked = true | |
2581 | p14.TopSurface = Enum.SurfaceType.Smooth | |
2582 | b8 = Instance.new("SpecialMesh", p14) | |
2583 | b8.MeshType = Enum.MeshType.Wedge | |
2584 | b8.Name = "Mesh" | |
2585 | b8.Scale = Vector3.new(0.200000003, 1, 1) | |
2586 | p15 = Instance.new("WedgePart", m) | |
2587 | p15.BrickColor = BrickColor.new("Bright blue") | |
2588 | p15.Material = Enum.Material.Neon | |
2589 | p15.Name = "Wedge" | |
2590 | p15.FormFactor = Enum.FormFactor.Custom | |
2591 | p15.Size = Vector3.new(1, 0.699999809, 1.29999995) | |
2592 | p15.CFrame = CFrame.new(68.0474777, 2.34926867, -14.7587423, 1.00055075, -6.67583618e-006, -2.41442808e-006, -8.73221416e-006, 0.999943614, 4.74457238e-006, -2.84674707e-006, 5.12405404e-006, 1.00046635) | |
2593 | p15.CanCollide = false | |
2594 | p15.Locked = true | |
2595 | p15.TopSurface = Enum.SurfaceType.Smooth | |
2596 | b9 = Instance.new("SpecialMesh", p15) | |
2597 | b9.MeshType = Enum.MeshType.Wedge | |
2598 | b9.Name = "Mesh" | |
2599 | b9.Scale = Vector3.new(0.200000003, 1, 1) | |
2600 | p16 = Instance.new("WedgePart", m) | |
2601 | p16.BrickColor = BrickColor.new("Bright blue") | |
2602 | p16.Material = Enum.Material.Neon | |
2603 | p16.Name = "Wedge" | |
2604 | p16.FormFactor = Enum.FormFactor.Custom | |
2605 | p16.Size = Vector3.new(1, 0.699999809, 1.29999995) | |
2606 | p16.CFrame = CFrame.new(67.4477234, 2.34926438, -14.7588549, 1.00055933, -6.79510413e-006, -2.44426587e-006, -8.85149075e-006, 0.99994266, 4.82602672e-006, -2.8765885e-006, 5.20550975e-006, 1.00047398) | |
2607 | p16.CanCollide = false | |
2608 | p16.Locked = true | |
2609 | p16.TopSurface = Enum.SurfaceType.Smooth | |
2610 | b10 = Instance.new("SpecialMesh", p16) | |
2611 | b10.MeshType = Enum.MeshType.Wedge | |
2612 | b10.Name = "Mesh" | |
2613 | b10.Scale = Vector3.new(0.200000003, 1, 1) | |
2614 | w1 = Instance.new("Weld", p1) | |
2615 | w1.Name = "Part_Weld" | |
2616 | w1.Part0 = p1 | |
2617 | w1.C0 = CFrame.new(-67.2025909, -3.50003719, 14.2622871, 1, -8.94065977e-008, 5.79734944e-008, 8.94065977e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1) | |
2618 | w1.Part1 = p2 | |
2619 | w1.C1 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2620 | w2 = Instance.new("Weld", p2) | |
2621 | w2.Name = "Part_Weld" | |
2622 | w2.Part0 = p2 | |
2623 | w2.C0 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2624 | w2.Part1 = p3 | |
2625 | w2.C1 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1) | |
2626 | w3 = Instance.new("Weld", p3) | |
2627 | w3.Name = "Part_Weld" | |
2628 | w3.Part0 = p3 | |
2629 | w3.C0 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1) | |
2630 | w3.Part1 = p4 | |
2631 | w3.C1 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1) | |
2632 | w4 = Instance.new("Weld", p4) | |
2633 | w4.Name = "Part_Weld" | |
2634 | w4.Part0 = p4 | |
2635 | w4.C0 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1) | |
2636 | w4.Part1 = p5 | |
2637 | w4.C1 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2638 | w5 = Instance.new("Weld", p5) | |
2639 | w5.Name = "Part_Weld" | |
2640 | w5.Part0 = p5 | |
2641 | w5.C0 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2642 | w5.Part1 = p6 | |
2643 | w5.C1 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1) | |
2644 | w6 = Instance.new("Weld", p6) | |
2645 | w6.Name = "Part_Weld" | |
2646 | w6.Part0 = p6 | |
2647 | w6.C0 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1) | |
2648 | w6.Part1 = p7 | |
2649 | w6.C1 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381) | |
2650 | w7 = Instance.new("Weld", p7) | |
2651 | w7.Name = "Part_Weld" | |
2652 | w7.Part0 = p7 | |
2653 | w7.C0 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381) | |
2654 | w7.Part1 = p8 | |
2655 | w7.C1 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2656 | w8 = Instance.new("Weld", p8) | |
2657 | w8.Name = "Wedge_Weld" | |
2658 | w8.Part0 = p8 | |
2659 | w8.C0 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2660 | w8.Part1 = p9 | |
2661 | w8.C1 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214) | |
2662 | w9 = Instance.new("Weld", p9) | |
2663 | w9.Name = "Part_Weld" | |
2664 | w9.Part0 = p9 | |
2665 | w9.C0 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214) | |
2666 | w9.Part1 = p10 | |
2667 | w9.C1 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2668 | w10 = Instance.new("Weld", p10) | |
2669 | w10.Name = "Part_Weld" | |
2670 | w10.Part0 = p10 | |
2671 | w10.C0 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2672 | w10.Part1 = p11 | |
2673 | w10.C1 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2674 | w11 = Instance.new("Weld", p11) | |
2675 | w11.Name = "Part_Weld" | |
2676 | w11.Part0 = p11 | |
2677 | w11.C0 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2678 | w11.Part1 = p12 | |
2679 | w11.C1 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381) | |
2680 | w12 = Instance.new("Weld", p12) | |
2681 | w12.Name = "Part_Weld" | |
2682 | w12.Part0 = p12 | |
2683 | w12.C0 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381) | |
2684 | w12.Part1 = p13 | |
2685 | w12.C1 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381) | |
2686 | w13 = Instance.new("Weld", p13) | |
2687 | w13.Name = "Wedge_Weld" | |
2688 | w13.Part0 = p13 | |
2689 | w13.C0 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381) | |
2690 | w13.Part1 = p14 | |
2691 | w13.C1 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381) | |
2692 | w14 = Instance.new("Weld", p14) | |
2693 | w14.Name = "Wedge_Weld" | |
2694 | w14.Part0 = p14 | |
2695 | w14.C0 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381) | |
2696 | w14.Part1 = p15 | |
2697 | w14.C1 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381) | |
2698 | w15 = Instance.new("Weld", p15) | |
2699 | w15.Name = "Wedge_Weld" | |
2700 | w15.Part0 = p15 | |
2701 | w15.C0 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381) | |
2702 | w15.Part1 = p16 | |
2703 | w15.C1 = CFrame.new(-67.4004517, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381) | |
2704 | m.Parent = rleg | |
2705 | m:MakeJoints() | |
2706 | ---------------------------------------------------- | |
2707 | local cor6 = Instance.new("Part", rleg.RightLeg) | |
2708 | cor6.Name = "Thingy" | |
2709 | cor6.Locked = true | |
2710 | cor6.BottomSurface = 0 | |
2711 | cor6.CanCollide = false | |
2712 | cor6.Size = Vector3.new(2, 1, 1) | |
2713 | cor6.Transparency = 1 | |
2714 | cor6.TopSurface = 0 | |
2715 | corw2 = Instance.new("Weld", cor6) | |
2716 | corw2.Part0 = rleg | |
2717 | corw2.Part1 = cor6 | |
2718 | corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)) | |
2719 | corw2.C1 = CFrame.new(0, 0, 0) | |
2720 | weld2 = Instance.new("Weld", rleg.RightLeg) | |
2721 | weld2.Part0 = cor6 | |
2722 | weld2.Part1 = p7 | |
2723 | weld2.C0 = CFrame.new(0, 0, 0) | |
2724 | ---------------------------------------------------- | |
2725 | local m = Instance.new("Model") | |
2726 | m.Name = "LeftLeg" | |
2727 | p1 = Instance.new("WedgePart", m) | |
2728 | p1.BrickColor = BrickColor.new("Bright blue") | |
2729 | p1.Material = Enum.Material.Neon | |
2730 | p1.Name = "Wedge" | |
2731 | p1.FormFactor = Enum.FormFactor.Custom | |
2732 | p1.Size = Vector3.new(1, 0.699999809, 1.29999995) | |
2733 | p1.CFrame = CFrame.new(64.3107605, 2.34980536, -14.7520046, 1.00008786, -7.1526415e-007, 2.00803143e-007, -2.2649931e-006, 0.999990404, 5.36453001e-007, -1.27237047e-006, 7.81809263e-007, 1.00007522) | |
2734 | p1.CanCollide = false | |
2735 | p1.Locked = true | |
2736 | p1.TopSurface = Enum.SurfaceType.Smooth | |
2737 | b1 = Instance.new("SpecialMesh", p1) | |
2738 | b1.MeshType = Enum.MeshType.Wedge | |
2739 | b1.Name = "Mesh" | |
2740 | b1.Scale = Vector3.new(0.200000003, 1, 1) | |
2741 | p2 = Instance.new("WedgePart", m) | |
2742 | p2.BrickColor = BrickColor.new("Bright blue") | |
2743 | p2.Material = Enum.Material.Neon | |
2744 | p2.Name = "Wedge" | |
2745 | p2.FormFactor = Enum.FormFactor.Custom | |
2746 | p2.Size = Vector3.new(1, 1.19999981, 4) | |
2747 | p2.CFrame = CFrame.new(64.9138336, 3.49979234, -10.7640553, -1.00009644, -6.38643314e-007, 1.81689501e-007, 2.53323037e-006, 0.906298041, -0.422614515, 1.23479219e-006, -0.422652602, -0.906383216) | |
2748 | p2.CanCollide = false | |
2749 | p2.Locked = true | |
2750 | p2.TopSurface = Enum.SurfaceType.Smooth | |
2751 | b2 = Instance.new("SpecialMesh", p2) | |
2752 | b2.MeshType = Enum.MeshType.Wedge | |
2753 | b2.Name = "Mesh" | |
2754 | b2.Scale = Vector3.new(0.600000024, 1, 1) | |
2755 | p3 = Instance.new("Part", m) | |
2756 | - | p3.BrickColor = BrickColor.new("Really black") |
2756 | + | p3.BrickColor = BrickColor.new("Lime green") |
2757 | p3.Material = Enum.Material.Metal | |
2758 | p3.Name = "Main" | |
2759 | p3.FormFactor = Enum.FormFactor.Custom | |
2760 | p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005) | |
2761 | p3.CFrame = CFrame.new(65.0144501, 3.99976897, -13.1643734, 1.00010526, -9.43461771e-007, 1.5135204e-007, -2.48442234e-006, 0.999988973, 7.74860382e-007, -1.32394814e-006, 8.94069672e-007, 1.00009048) | |
2762 | p3.CanCollide = false | |
2763 | p3.Locked = true | |
2764 | p3.BottomSurface = Enum.SurfaceType.Smooth | |
2765 | p3.TopSurface = Enum.SurfaceType.Smooth | |
2766 | p4 = Instance.new("Part", m) | |
2767 | - | p4.BrickColor = BrickColor.new("Really black") |
2767 | + | p4.BrickColor = BrickColor.new("Lime green") |
2768 | p4.Material = Enum.Material.Neon | |
2769 | p4.FormFactor = Enum.FormFactor.Custom | |
2770 | p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2771 | p4.CFrame = CFrame.new(64.8149185, 4.09976244, -14.2645903, 1.00011396, -1.07351866e-006, 1.23178822e-007, -2.62327239e-006, 0.999988258, 8.64272579e-007, -1.33881622e-006, 1.01328953e-006, 1.00009811) | |
2772 | p4.CanCollide = false | |
2773 | p4.Locked = true | |
2774 | p4.BottomSurface = Enum.SurfaceType.Smooth | |
2775 | p4.TopSurface = Enum.SurfaceType.Smooth | |
2776 | b3 = Instance.new("SpecialMesh", p4) | |
2777 | b3.MeshType = Enum.MeshType.Sphere | |
2778 | b3.Name = "Mesh" | |
2779 | p5 = Instance.new("WedgePart", m) | |
2780 | p5.BrickColor = BrickColor.new("Bright blue") | |
2781 | p5.Material = Enum.Material.Neon | |
2782 | p5.Name = "Wedge" | |
2783 | p5.FormFactor = Enum.FormFactor.Custom | |
2784 | p5.Size = Vector3.new(1, 0.699999809, 1.29999995) | |
2785 | p5.CFrame = CFrame.new(64.9130707, 2.34976578, -14.7524614, 1.00012243, -1.19274011e-006, 9.97973828e-008, -2.74250215e-006, 0.999987364, 8.94081438e-007, -1.37342522e-006, 1.15432931e-006, 1.00010574) | |
2786 | p5.CanCollide = false | |
2787 | p5.Locked = true | |
2788 | p5.TopSurface = Enum.SurfaceType.Smooth | |
2789 | b4 = Instance.new("SpecialMesh", p5) | |
2790 | b4.MeshType = Enum.MeshType.Wedge | |
2791 | b4.Name = "Mesh" | |
2792 | b4.Scale = Vector3.new(0.200000003, 1, 1) | |
2793 | p6 = Instance.new("Part", m) | |
2794 | p6.BrickColor = BrickColor.new("Bright blue") | |
2795 | p6.Material = Enum.Material.Neon | |
2796 | p6.FormFactor = Enum.FormFactor.Custom | |
2797 | p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048) | |
2798 | p6.CFrame = CFrame.new(65.1539307, 3.56787443, -14.2648125, -0.81925869, 0.573652625, 6.3568308e-008, -0.573566198, -0.819142461, 1.03511331e-006, 4.69596898e-007, -1.7646264e-006, 1.00011337) | |
2799 | p6.CanCollide = false | |
2800 | p6.Locked = true | |
2801 | p6.BottomSurface = Enum.SurfaceType.Smooth | |
2802 | p6.TopSurface = Enum.SurfaceType.Smooth | |
2803 | p7 = Instance.new("Part", m) | |
2804 | p7.BrickColor = BrickColor.new("Bright blue") | |
2805 | p7.Material = Enum.Material.Neon | |
2806 | p7.FormFactor = Enum.FormFactor.Custom | |
2807 | p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048) | |
2808 | p7.CFrame = CFrame.new(64.9899063, 4.4266243, -14.2649202, 0.86614728, 0.500068843, 4.87115699e-008, -0.499995351, 0.866011381, 1.14634361e-006, -1.86828663e-006, 3.82691809e-007, 1.000121) | |
2809 | p7.CanCollide = false | |
2810 | p7.Locked = true | |
2811 | p7.BottomSurface = Enum.SurfaceType.Smooth | |
2812 | p7.TopSurface = Enum.SurfaceType.Smooth | |
2813 | p8 = Instance.new("Part", m) | |
2814 | - | p8.BrickColor = BrickColor.new("Really black") |
2814 | + | p8.BrickColor = BrickColor.new("Lime green") |
2815 | p8.Material = Enum.Material.Neon | |
2816 | p8.FormFactor = Enum.FormFactor.Custom | |
2817 | p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2818 | p8.CFrame = CFrame.new(65.2172623, 4.89969873, -14.2650318, 1.00014877, -1.43051147e-006, 2.05365609e-008, -3.09944153e-006, 0.99998486, 1.2357583e-006, -1.44150738e-006, 1.38478742e-006, 1.00012863) | |
2819 | p8.CanCollide = false | |
2820 | p8.Locked = true | |
2821 | p8.BottomSurface = Enum.SurfaceType.Smooth | |
2822 | p8.TopSurface = Enum.SurfaceType.Smooth | |
2823 | b5 = Instance.new("SpecialMesh", p8) | |
2824 | b5.MeshType = Enum.MeshType.Sphere | |
2825 | b5.Name = "Mesh" | |
2826 | p9 = Instance.new("Part", m) | |
2827 | - | p9.BrickColor = BrickColor.new("Really black") |
2827 | + | p9.BrickColor = BrickColor.new("Lime green") |
2828 | p9.Material = Enum.Material.Neon | |
2829 | p9.FormFactor = Enum.FormFactor.Custom | |
2830 | p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2831 | p9.CFrame = CFrame.new(65.517868, 2.99971151, -14.2651463, 1.00015736, -1.5520751e-006, -9.27031252e-009, -3.21633729e-006, 0.999984026, 1.32517368e-006, -1.46969478e-006, 1.46621869e-006, 1.00013626) | |
2832 | p9.CanCollide = false | |
2833 | p9.Locked = true | |
2834 | p9.BottomSurface = Enum.SurfaceType.Smooth | |
2835 | p9.TopSurface = Enum.SurfaceType.Smooth | |
2836 | b6 = Instance.new("SpecialMesh", p9) | |
2837 | b6.MeshType = Enum.MeshType.Sphere | |
2838 | b6.Name = "Mesh" | |
2839 | p10 = Instance.new("Part", m) | |
2840 | p10.BrickColor = BrickColor.new("Bright blue") | |
2841 | p10.Material = Enum.Material.Neon | |
2842 | p10.FormFactor = Enum.FormFactor.Custom | |
2843 | p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048) | |
2844 | p10.CFrame = CFrame.new(64.79879, 5.1497221, -14.2652512, -0.642893076, 0.766172707, -3.7446263e-008, -0.766029418, -0.64277941, 1.40660427e-006, -2.27817864e-007, -2.14863894e-006, 1.00014389) | |
2845 | p10.CanCollide = false | |
2846 | p10.Locked = true | |
2847 | p10.BottomSurface = Enum.SurfaceType.Smooth | |
2848 | p10.TopSurface = Enum.SurfaceType.Smooth | |
2849 | p11 = Instance.new("Part", m) | |
2850 | p11.BrickColor = BrickColor.new("Bright blue") | |
2851 | p11.Material = Enum.Material.Neon | |
2852 | p11.FormFactor = Enum.FormFactor.Custom | |
2853 | p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048) | |
2854 | p11.CFrame = CFrame.new(65.2189484, 5.30325174, -14.2653618, 1.00017476, -1.78813934e-006, -6.56227002e-008, -3.4570694e-006, 0.999982595, 1.49602079e-006, -1.52770292e-006, 1.64505627e-006, 1.00015152) | |
2855 | p11.CanCollide = false | |
2856 | p11.Locked = true | |
2857 | p11.BottomSurface = Enum.SurfaceType.Smooth | |
2858 | p11.TopSurface = Enum.SurfaceType.Smooth | |
2859 | p12 = Instance.new("WedgePart", m) | |
2860 | p12.BrickColor = BrickColor.new("Bright blue") | |
2861 | p12.Material = Enum.Material.Neon | |
2862 | p12.Name = "Wedge" | |
2863 | p12.FormFactor = Enum.FormFactor.Custom | |
2864 | p12.Size = Vector3.new(1, 0.699999809, 1.29999995) | |
2865 | p12.CFrame = CFrame.new(65.5171509, 2.34969687, -14.7532635, 1.00018334, -1.89246384e-006, -8.90070169e-008, -3.54650388e-006, 0.999981821, 1.52583425e-006, -1.56231545e-006, 1.78610321e-006, 1.00015914) | |
2866 | p12.CanCollide = false | |
2867 | p12.Locked = true | |
2868 | p12.TopSurface = Enum.SurfaceType.Smooth | |
2869 | b7 = Instance.new("SpecialMesh", p12) | |
2870 | b7.MeshType = Enum.MeshType.Wedge | |
2871 | b7.Name = "Mesh" | |
2872 | b7.Scale = Vector3.new(0.200000003, 1, 1) | |
2873 | p13 = Instance.new("Part", m) | |
2874 | - | p13.BrickColor = BrickColor.new("Really black") |
2874 | + | p13.BrickColor = BrickColor.new("Lime green") |
2875 | p13.Material = Enum.Material.Neon | |
2876 | p13.FormFactor = Enum.FormFactor.Custom | |
2877 | p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2878 | p13.CFrame = CFrame.new(64.3198929, 5.59963703, -14.2655821, 1.00019193, -1.97098893e-006, -1.23608402e-007, -3.67657594e-006, 0.999981046, 1.66687016e-006, -1.58571254e-006, 1.81590929e-006, 1.00016677) | |
2879 | p13.CanCollide = false | |
2880 | p13.Locked = true | |
2881 | p13.BottomSurface = Enum.SurfaceType.Smooth | |
2882 | p13.TopSurface = Enum.SurfaceType.Smooth | |
2883 | b8 = Instance.new("SpecialMesh", p13) | |
2884 | b8.MeshType = Enum.MeshType.Sphere | |
2885 | b8.Name = "Mesh" | |
2886 | p14 = Instance.new("Part", m) | |
2887 | - | p14.BrickColor = BrickColor.new("Really black") |
2887 | + | p14.BrickColor = BrickColor.new("Lime green") |
2888 | p14.Material = Enum.Material.Neon | |
2889 | p14.FormFactor = Enum.FormFactor.Custom | |
2890 | p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006) | |
2891 | p14.CFrame = CFrame.new(65.2206192, 5.79961872, -14.2656937, 1.00020039, -2.10105645e-006, -1.51786239e-007, -3.75511786e-006, 0.99998033, 1.7562885e-006, -1.6139021e-006, 1.90533035e-006, 1.0001744) | |
2892 | p14.CanCollide = false | |
2893 | p14.Locked = true | |
2894 | p14.BottomSurface = Enum.SurfaceType.Smooth | |
2895 | p14.TopSurface = Enum.SurfaceType.Smooth | |
2896 | b9 = Instance.new("SpecialMesh", p14) | |
2897 | b9.MeshType = Enum.MeshType.Sphere | |
2898 | b9.Name = "Mesh" | |
2899 | w1 = Instance.new("Weld", p1) | |
2900 | w1.Name = "Wedge_Weld" | |
2901 | w1.Part0 = p1 | |
2902 | w1.C0 = CFrame.new(-64.3004303, -0.350028396, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381) | |
2903 | w1.Part1 = p2 | |
2904 | w1.C1 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214) | |
2905 | w2 = Instance.new("Weld", p2) | |
2906 | w2.Name = "Part_Weld" | |
2907 | w2.Part0 = p2 | |
2908 | w2.C0 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214) | |
2909 | w2.Part1 = p3 | |
2910 | w2.C1 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381) | |
2911 | w3 = Instance.new("Weld", p3) | |
2912 | w3.Name = "Part_Weld" | |
2913 | w3.Part0 = p3 | |
2914 | w3.C0 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381) | |
2915 | w3.Part1 = p4 | |
2916 | w3.C1 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2917 | w4 = Instance.new("Weld", p4) | |
2918 | w4.Name = "Wedge_Weld" | |
2919 | w4.Part0 = p4 | |
2920 | w4.C0 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2921 | w4.Part1 = p5 | |
2922 | w4.C1 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381) | |
2923 | w5 = Instance.new("Weld", p5) | |
2924 | w5.Name = "Part_Weld" | |
2925 | w5.Part0 = p5 | |
2926 | w5.C0 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381) | |
2927 | w5.Part1 = p6 | |
2928 | w5.C1 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381) | |
2929 | w6 = Instance.new("Weld", p6) | |
2930 | w6.Name = "Part_Weld" | |
2931 | w6.Part0 = p6 | |
2932 | w6.C0 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381) | |
2933 | w6.Part1 = p7 | |
2934 | w6.C1 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381) | |
2935 | w7 = Instance.new("Weld", p7) | |
2936 | w7.Name = "Part_Weld" | |
2937 | w7.Part0 = p7 | |
2938 | w7.C0 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381) | |
2939 | w7.Part1 = p8 | |
2940 | w7.C1 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2941 | w8 = Instance.new("Weld", p8) | |
2942 | w8.Name = "Part_Weld" | |
2943 | w8.Part0 = p8 | |
2944 | w8.C0 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2945 | w8.Part1 = p9 | |
2946 | w8.C1 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381) | |
2947 | w9 = Instance.new("Weld", p9) | |
2948 | w9.Name = "Part_Weld" | |
2949 | w9.Part0 = p9 | |
2950 | w9.C0 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381) | |
2951 | w9.Part1 = p10 | |
2952 | w9.C1 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2953 | w10 = Instance.new("Weld", p10) | |
2954 | w10.Name = "Part_Weld" | |
2955 | w10.Part0 = p10 | |
2956 | w10.C0 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2957 | w10.Part1 = p11 | |
2958 | w10.C1 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2959 | w11 = Instance.new("Weld", p11) | |
2960 | w11.Name = "Wedge_Weld" | |
2961 | w11.Part0 = p11 | |
2962 | w11.C0 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2963 | w11.Part1 = p12 | |
2964 | w11.C1 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381) | |
2965 | w12 = Instance.new("Weld", p12) | |
2966 | w12.Name = "Part_Weld" | |
2967 | w12.Part0 = p12 | |
2968 | w12.C0 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381) | |
2969 | w12.Part1 = p13 | |
2970 | w12.C1 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2971 | w13 = Instance.new("Weld", p13) | |
2972 | w13.Name = "Part_Weld" | |
2973 | w13.Part0 = p13 | |
2974 | w13.C0 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2975 | w13.Part1 = p14 | |
2976 | w13.C1 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2977 | w14 = Instance.new("Weld", p14) | |
2978 | w14.Name = "Wedge_Weld" | |
2979 | w14.Part0 = p14 | |
2980 | w14.C0 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381) | |
2981 | m.Parent = lleg | |
2982 | m:MakeJoints() | |
2983 | ---------------------------------------------------- | |
2984 | local cor7 = Instance.new("Part", lleg.LeftLeg) | |
2985 | cor7.Name = "Thingy" | |
2986 | cor7.Locked = true | |
2987 | cor7.BottomSurface = 0 | |
2988 | cor7.CanCollide = false | |
2989 | cor7.Size = Vector3.new(2, 1, 1) | |
2990 | cor7.Transparency = 1 | |
2991 | cor7.TopSurface = 0 | |
2992 | corw2 = Instance.new("Weld", cor7) | |
2993 | corw2.Part0 = lleg | |
2994 | corw2.Part1 = cor7 | |
2995 | corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)) | |
2996 | corw2.C1 = CFrame.new(0, 0, 0) | |
2997 | weld2 = Instance.new("Weld", lleg.LeftLeg) | |
2998 | weld2.Part0 = cor7 | |
2999 | weld2.Part1 = p3 | |
3000 | weld2.C0 = CFrame.new(0, 0, 0) | |
3001 | ---------------------------------------------------- | |
3002 | function weld5(part0, part1, c0, c1) | |
3003 | weeld=Instance.new("Weld", part0) | |
3004 | weeld.Part0=part0 | |
3005 | weeld.Part1=part1 | |
3006 | weeld.C0=c0 | |
3007 | weeld.C1=c1 | |
3008 | return weeld | |
3009 | end | |
3010 | ---------------------------------------------------- | |
3011 | function newRay(start,face,range,wat) | |
3012 | local rey=Ray.new(start.p,(face.p-start.p).Unit*range) | |
3013 | hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat) | |
3014 | return rey,hit,pos | |
3015 | end | |
3016 | ---------------------------------------------------- | |
3017 | mod5 = Instance.new("Model",char) | |
3018 | ||
3019 | function FindNearestTorso(Position,Distance,SinglePlayer) | |
3020 | if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end | |
3021 | local List = {} | |
3022 | for i,v in pairs(workspace:GetChildren())do | |
3023 | if v:IsA("Model")then | |
3024 | if v:findFirstChild("Torso")then | |
3025 | if v ~= char then | |
3026 | if(v.Torso.Position -Position).magnitude <= Distance then | |
3027 | table.insert(List,v) | |
3028 | end | |
3029 | end | |
3030 | end | |
3031 | end | |
3032 | end | |
3033 | return List | |
3034 | end | |
3035 | ||
3036 | function Landing() | |
3037 | part=Instance.new('Part',mod5) | |
3038 | part.Anchored=true | |
3039 | part.CanCollide=false | |
3040 | part.FormFactor='Custom' | |
3041 | part.Size=Vector3.new(.2,.2,.2) | |
3042 | part.CFrame=root.CFrame*CFrame.new(0,-2,0) | |
3043 | part.Transparency=.7 | |
3044 | - | part.BrickColor=BrickColor.new('Really black') |
3044 | + | part.BrickColor=BrickColor.new('Lime green') |
3045 | part2=part:clone() | |
3046 | part2.Parent = mod5 | |
3047 | part2.BrickColor=BrickColor.new('Bright blue') | |
3048 | mesh=Instance.new('SpecialMesh',part) | |
3049 | mesh.MeshId='http://www.roblox.com/asset/?id=20329976' | |
3050 | mesh.Scale=Vector3.new(10,5,10) | |
3051 | mesh2=mesh:clone() | |
3052 | mesh2.Parent=part2 | |
3053 | mesh2.Scale=Vector3.new(12, 6, 12) | |
3054 | ||
3055 | for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do | |
3056 | if v:FindFirstChild('Humanoid') then | |
3057 | v.Humanoid:TakeDamage(math.random(20,30)) | |
3058 | v.Humanoid.PlatformStand = true | |
3059 | v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 30 | |
3060 | end | |
3061 | end | |
3062 | ||
3063 | coroutine.resume(coroutine.create(function() | |
3064 | for i=0,3.8,0.05 do | |
3065 | wait() | |
3066 | part.CFrame=part.CFrame | |
3067 | part.Transparency=i | |
3068 | part2.CFrame=part2.CFrame | |
3069 | part2.Transparency=i | |
3070 | mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1) | |
3071 | mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2) | |
3072 | end | |
3073 | part.Parent = nil | |
3074 | end)) | |
3075 | end | |
3076 | ---------------------------------------------------- | |
3077 | mod4 = Instance.new("Model",char) | |
3078 | ||
3079 | ptez = {0.7, 0.8, 0.9, 1} | |
3080 | ||
3081 | function FindNearestTorso(Position,Distance,SinglePlayer) | |
3082 | if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end | |
3083 | local List = {} | |
3084 | for i,v in pairs(workspace:GetChildren())do | |
3085 | if v:IsA("Model")then | |
3086 | if v:findFirstChild("Torso")then | |
3087 | if v ~= char then | |
3088 | if(v.Torso.Position -Position).magnitude <= Distance then | |
3089 | table.insert(List,v) | |
3090 | end | |
3091 | end | |
3092 | end | |
3093 | end | |
3094 | end | |
3095 | return List | |
3096 | end | |
3097 | ||
3098 | function GroundPound() | |
3099 | part=Instance.new('Part',mod4) | |
3100 | part.Anchored=true | |
3101 | part.CanCollide=false | |
3102 | part.FormFactor='Custom' | |
3103 | part.Size=Vector3.new(.2,.2,.2) | |
3104 | part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0) | |
3105 | part.Transparency=.7 | |
3106 | - | part.BrickColor=BrickColor.new('Really black') |
3106 | + | part.BrickColor=BrickColor.new('Lime green') |
3107 | mesh=Instance.new('SpecialMesh',part) | |
3108 | mesh.MeshId='http://www.roblox.com/asset/?id=3270017' | |
3109 | mesh.Scale=Vector3.new(3,3,3) | |
3110 | part2=Instance.new('Part',mod4) | |
3111 | part2.Anchored=true | |
3112 | part2.CanCollide=false | |
3113 | part2.FormFactor='Custom' | |
3114 | part2.Size=Vector3.new(.2,.2,.2) | |
3115 | part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6) | |
3116 | part2.Transparency=.7 | |
3117 | part2.BrickColor=BrickColor.new('Really red') | |
3118 | mesh2=Instance.new('SpecialMesh',part2) | |
3119 | mesh2.MeshId='http://www.roblox.com/asset/?id=20329976' | |
3120 | mesh2.Scale=Vector3.new(3,1.5,3) | |
3121 | x = Instance.new("Sound",char) | |
3122 | x.SoundId = "http://www.roblox.com/asset/?id=142070127" | |
3123 | x.Pitch = ptez[math.random(1,#ptez)] | |
3124 | x.Volume = 1 | |
3125 | wait(.1) | |
3126 | x:Play() | |
3127 | for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do | |
3128 | if v:FindFirstChild('Humanoid') then | |
3129 | v.Humanoid:TakeDamage(math.random(8,15)) | |
3130 | end | |
3131 | end | |
3132 | coroutine.resume(coroutine.create(function() | |
3133 | for i=0,0.62,0.13 do | |
3134 | wait() | |
3135 | part.CFrame=part.CFrame | |
3136 | part.Transparency=i | |
3137 | mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4) | |
3138 | part2.CFrame=part2.CFrame | |
3139 | part2.Transparency=i | |
3140 | mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4) | |
3141 | end | |
3142 | part.Parent=nil | |
3143 | part2.Parent=nil | |
3144 | x:Destroy() | |
3145 | end)) | |
3146 | end | |
3147 | ---------------------------------------------------- | |
3148 | mod=Instance.new('Model',char) | |
3149 | ||
3150 | function charge() | |
3151 | hed.Velocity=hed.CFrame.lookVector*200 | |
3152 | part=Instance.new('Part',mod) | |
3153 | part.Anchored=true | |
3154 | part.CanCollide=false | |
3155 | part.FormFactor='Custom' | |
3156 | part.Size=Vector3.new(.2,.2,.2) | |
3157 | part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0) | |
3158 | part.Transparency=.7 | |
3159 | part.BrickColor=BrickColor.new('Black') | |
3160 | mesh=Instance.new('SpecialMesh',part) | |
3161 | mesh.MeshId='http://www.roblox.com/asset/?id=20329976' | |
3162 | mesh.Scale=Vector3.new(10,5,10) | |
3163 | part2=part:clone() | |
3164 | part2.Parent=mod | |
3165 | part2.BrickColor=BrickColor.new('Bright red') | |
3166 | mesh2=mesh:clone() | |
3167 | mesh2.Parent=part2 | |
3168 | mesh2.Scale=Vector3.new(20,10,20) | |
3169 | part3=part2:clone() | |
3170 | part3.Parent = mod | |
3171 | - | part3.BrickColor=BrickColor.new('Really black') |
3171 | + | part3.BrickColor=BrickColor.new('Lime green') |
3172 | mesh3=mesh2:clone() | |
3173 | mesh2.Parent=part3 | |
3174 | mesh3.Scale=Vector3.new(30,15,30) | |
3175 | coroutine.resume(coroutine.create(function() | |
3176 | for i=0,1,0.1 do | |
3177 | wait() | |
3178 | part.CFrame=part.CFrame | |
3179 | part.Transparency=i | |
3180 | mesh.Scale=mesh.Scale+Vector3.new(1,1,1) | |
3181 | part2.CFrame=part2.CFrame | |
3182 | part2.Transparency=i | |
3183 | mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1) | |
3184 | part3.CFrame=part3.CFrame | |
3185 | part3.Transparency=i | |
3186 | mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1) | |
3187 | end | |
3188 | part.Parent=nil | |
3189 | part2.Parent=nil | |
3190 | part3.Parent = nil | |
3191 | end)) | |
3192 | end | |
3193 | ---------------------------------------------------- | |
3194 | function FindNearestTorso(Position,Distance,SinglePlayer) | |
3195 | if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end | |
3196 | local List = {} | |
3197 | for i,v in pairs(workspace:GetChildren())do | |
3198 | if v:IsA("Model")then | |
3199 | if v:findFirstChild("Torso")then | |
3200 | if v ~= char then | |
3201 | if(v.Torso.Position -Position).magnitude <= Distance then | |
3202 | table.insert(List,v) | |
3203 | end | |
3204 | end | |
3205 | end | |
3206 | end | |
3207 | end | |
3208 | return List | |
3209 | end | |
3210 | ||
3211 | mod3 = Instance.new("Model",rleg) | |
3212 | ||
3213 | function Stomp() | |
3214 | part=Instance.new('Part',mod3) | |
3215 | part.Anchored=true | |
3216 | part.CanCollide=false | |
3217 | part.FormFactor='Custom' | |
3218 | part.Size=Vector3.new(.2,.2,.2) | |
3219 | part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0) | |
3220 | part.Transparency=.7 | |
3221 | part.BrickColor=BrickColor.new('Bright green') | |
3222 | mesh=Instance.new('SpecialMesh',part) | |
3223 | mesh.MeshId='http://www.roblox.com/asset/?id=3270017' | |
3224 | mesh.Scale=Vector3.new(25,25,25) | |
3225 | part2=part:clone() | |
3226 | part2.Parent=mod3 | |
3227 | part2.BrickColor=BrickColor.new('Bright green') | |
3228 | mesh2=mesh:clone() | |
3229 | mesh2.Parent=part2 | |
3230 | mesh2.Scale=Vector3.new(15,15,15) | |
3231 | part3=part:clone() | |
3232 | part3.Parent=mod3 | |
3233 | part3.TopSurface=0 | |
3234 | part3.BottomSurface=0 | |
3235 | part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0) | |
3236 | mesh3=Instance.new('SpecialMesh',part3) | |
3237 | mesh3.MeshType = 3 | |
3238 | mesh3.Scale=Vector3.new(12,12,12) | |
3239 | for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do | |
3240 | if v:FindFirstChild('Humanoid') then | |
3241 | v.Humanoid:TakeDamage(math.random(20,60)) | |
3242 | v.Humanoid.PlatformStand = true | |
3243 | v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100 | |
3244 | end | |
3245 | end | |
3246 | coroutine.resume(coroutine.create(function() | |
3247 | for i=0,3.8,0.05 do | |
3248 | wait() | |
3249 | part.CFrame=part.CFrame | |
3250 | part.Transparency=i | |
3251 | mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8) | |
3252 | part2.CFrame=part2.CFrame | |
3253 | part2.Transparency=i | |
3254 | mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1) | |
3255 | part3.CFrame=part3.CFrame | |
3256 | part3.Transparency=i | |
3257 | mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5) | |
3258 | end | |
3259 | end)) | |
3260 | end | |
3261 | ---------------------------------------------------- | |
3262 | ||
3263 | local acos = math.acos | |
3264 | local sqrt = math.sqrt | |
3265 | local Vec3 = Vector3.new | |
3266 | local fromAxisAngle = CFrame.fromAxisAngle | |
3267 | ||
3268 | local function toAxisAngle(CFr) | |
3269 | local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components() | |
3270 | local Angle = math.acos((R00+R11+R22-1)/2) | |
3271 | local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2 | |
3272 | A = A == 0 and 0.00001 or A | |
3273 | local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2 | |
3274 | B = B == 0 and 0.00001 or B | |
3275 | local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2 | |
3276 | C = C == 0 and 0.00001 or C | |
3277 | local x = (R21-R12)/sqrt(A) | |
3278 | local y = (R02-R20)/sqrt(B) | |
3279 | local z = (R10-R01)/sqrt(C) | |
3280 | return Vec3(x,y,z),Angle | |
3281 | end | |
3282 | ||
3283 | function ApplyTrig(Num,Func) | |
3284 | local Min,Max = Func(0),Func(1) | |
3285 | local i = Func(Num) | |
3286 | return (i-Min)/(Max-Min) | |
3287 | --[[if Func == "sin" then | |
3288 | return (math.sin((1-Num)*math.pi)+1)/2 | |
3289 | elseif Func == "cos" then | |
3290 | return (math.cos((1-Num)*math.pi)+1)/2 | |
3291 | end]] | |
3292 | end | |
3293 | ||
3294 | function LerpCFrame(CFrame1,CFrame2,Num) | |
3295 | local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2) | |
3296 | return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num | |
3297 | end | |
3298 | ||
3299 | function Crater(Torso,Radius) | |
3300 | Spawn(function() | |
3301 | local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10) | |
3302 | local Ignore = {} | |
3303 | for i,v in pairs(game:GetService("Players"):GetPlayers()) do | |
3304 | if v.Character ~= nil then | |
3305 | Ignore[#Ignore+1] = v.Character | |
3306 | end | |
3307 | end | |
3308 | local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore) | |
3309 | if Hit == nil then return end | |
3310 | local Parts = {} | |
3311 | for i = 1,360,10 do | |
3312 | local P = Instance.new("Part",Torso.Parent) | |
3313 | P.Anchored = true | |
3314 | P.FormFactor = "Custom" | |
3315 | P.BrickColor = Hit.BrickColor | |
3316 | P.Material = Hit.Material | |
3317 | P.TopSurface = "Smooth" | |
3318 | P.BottomSurface = "Smooth" | |
3319 | P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100) | |
3320 | P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,7,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50))) | |
3321 | Parts[#Parts+1] = {P,P.CFrame,((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,1,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius)*CFrame.Angles(math.rad(math.random(-50,-20)),math.rad(math.random(-15,15)),math.rad(math.random(-15,15))),P.Size} | |
3322 | if math.random(0,5) == 0 then -- rubble | |
3323 | local P = Instance.new("Part",Torso.Parent) | |
3324 | P.Anchored = true | |
3325 | P.FormFactor = "Custom" | |
3326 | P.BrickColor = Hit.BrickColor | |
3327 | P.Material = Hit.Material | |
3328 | P.TopSurface = "Smooth" | |
3329 | P.BottomSurface = "Smooth" | |
3330 | P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100) | |
3331 | P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,2.5,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50))) | |
3332 | Parts[#Parts+1] = {P,P.CFrame,(CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius-8)*CFrame.Angles(math.rad(math.random(-90,90)),math.rad(math.random(-90,90)),math.rad(math.random(-90,90))),P.Size} | |
3333 | end | |
3334 | end | |
3335 | for i = 0,1,0.05 do | |
3336 | for i2,v in pairs(Parts) do | |
3337 | v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos)) | |
3338 | end | |
3339 | wait(0.02) | |
3340 | end | |
3341 | for i,v in pairs(Parts) do | |
3342 | if v[1].Size.X > 2.1 then | |
3343 | v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0) | |
3344 | end | |
3345 | v[1].Anchored = false | |
3346 | end | |
3347 | for i = 0,1,0.05 do | |
3348 | for i2,v in pairs(Parts) do | |
3349 | v[1].Transparency = i | |
3350 | if i == 1 then | |
3351 | v[1]:Destroy() | |
3352 | elseif i >= 0.25 then | |
3353 | v[1].CanCollide = false | |
3354 | end | |
3355 | end | |
3356 | wait(0.02) | |
3357 | end | |
3358 | Parts = nil | |
3359 | end) | |
3360 | end | |
3361 | ||
3362 | ---------------------------------------------------- | |
3363 | mouse.KeyDown:connect(function(key) | |
3364 | if key == "r" then | |
3365 | larm.BrickColor = BrickColor.new("Bright red") | |
3366 | rarm.BrickColor = BrickColor.new("Bright red") | |
3367 | if Debounces.CanAttack == true then | |
3368 | Debounces.CanAttack = false | |
3369 | Debounces.on = true | |
3370 | Debounces.NoIdl = true | |
3371 | to = char.Absolution.Thingy2.Touched:connect(function(ht) | |
3372 | hit = ht.Parent | |
3373 | if ht and hit:IsA("Model") then | |
3374 | if hit:FindFirstChild("Humanoid") then | |
3375 | if hit.Name ~= p.Name then | |
3376 | --[[if Debounces.Slashing == true and Debounces.Slashed == false then | |
3377 | Debounces.Slashed = true]]-- | |
3378 | hit:FindFirstChild("Humanoid"):TakeDamage(10) | |
3379 | wait(1) | |
3380 | --Debounces.Slashed = false | |
3381 | --end | |
3382 | end | |
3383 | end | |
3384 | elseif ht and hit:IsA("Hat") then | |
3385 | if hit.Parent.Name ~= p.Name then | |
3386 | if hit.Parent:FindFirstChild("Humanoid") then | |
3387 | --[[ if Debounces.Slashing == true and Debounces.Slashed == false then | |
3388 | Debounces.Slashed = true]]-- | |
3389 | hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10) | |
3390 | wait(1) | |
3391 | --Debounces.Slashed = false | |
3392 | end | |
3393 | end | |
3394 | end | |
3395 | end) | |
3396 | q = Instance.new("Sound",hed) | |
3397 | q.SoundId = "http://www.roblox.com/asset/?id=134012322" | |
3398 | q.Pitch = 0.85 | |
3399 | q.Looped = false | |
3400 | q1 = Instance.new("Sound",hed) | |
3401 | q1.SoundId = "http://www.roblox.com/asset/?id=134012322" | |
3402 | q1.Pitch = 0.85 | |
3403 | q1.Looped = false | |
3404 | q:Play() | |
3405 | q1:Play() | |
3406 | for i = 1,20 do | |
3407 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2) | |
3408 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2) | |
3409 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2) | |
3410 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2) | |
3411 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2) | |
3412 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2) | |
3413 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.25) | |
3414 | if Debounces.on == false then break end | |
3415 | rs:wait(.6) | |
3416 | end | |
3417 | n = Instance.new("Sound",hed) | |
3418 | n.SoundId = "http://www.roblox.com/asset/?id=168514932" | |
3419 | n.Pitch = 0.94 | |
3420 | n.Looped = false | |
3421 | n1 = Instance.new("Sound",hed) | |
3422 | n1.SoundId = "http://www.roblox.com/asset/?id=168514932" | |
3423 | n1.Pitch = 0.94 | |
3424 | n1.Looped = false | |
3425 | n:Play() | |
3426 | n1:Play() | |
3427 | b = Instance.new("Sound",hed) | |
3428 | b.SoundId = "http://www.roblox.com/asset/?id=168586586" | |
3429 | b.Pitch = 0.94 | |
3430 | b.Looped = false | |
3431 | b1 = Instance.new("Sound",hed) | |
3432 | b1.SoundId = "http://www.roblox.com/asset/?id=168586586" | |
3433 | b1.Pitch = 0.94 | |
3434 | b1.Looped = false | |
3435 | b:Play() | |
3436 | b1:Play() | |
3437 | for i = 1,26 do | |
3438 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.25) | |
3439 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.25) | |
3440 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.25) | |
3441 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25) | |
3442 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25) | |
3443 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25) | |
3444 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.25) | |
3445 | if Debounces.on == false then break end | |
3446 | rs:wait(1) | |
3447 | end | |
3448 | wait(.5) | |
3449 | to:disconnect() | |
3450 | q:Destroy() | |
3451 | q1:Destroy() | |
3452 | n:Destroy() | |
3453 | n1:Destroy() | |
3454 | - | larm.BrickColor = BrickColor.new("Really black") |
3454 | + | larm.BrickColor = BrickColor.new("Lime green") |
3455 | - | rarm.BrickColor = BrickColor.new("Really black") |
3455 | + | rarm.BrickColor = BrickColor.new("Lime green") |
3456 | if Debounces.CanAttack == false then | |
3457 | Debounces.CanAttack = true | |
3458 | Debounces.on = false | |
3459 | Debounces.NoIdl = false | |
3460 | end | |
3461 | end | |
3462 | end | |
3463 | end) | |
3464 | ---------------------------------------------------- | |
3465 | mouse.KeyDown:connect(function(key) | |
3466 | if key == "q" then | |
3467 | larm.BrickColor = BrickColor.new("Bright red") | |
3468 | rarm.BrickColor = BrickColor.new("Bright red") | |
3469 | if Debounces.CanAttack == true then | |
3470 | Debounces.CanAttack = false | |
3471 | Debounces.on = true | |
3472 | Debounces.NoIdl = true | |
3473 | to = char.Absolution.Thingy2.Touched:connect(function(ht) | |
3474 | hit = ht.Parent | |
3475 | if ht and hit:IsA("Model") then | |
3476 | if hit:FindFirstChild("Humanoid") then | |
3477 | if hit.Name ~= p.Name then | |
3478 | --[[if Debounces.Slashing == true and Debounces.Slashed == false then | |
3479 | Debounces.Slashed = true]]-- | |
3480 | hit:FindFirstChild("Humanoid"):TakeDamage(4) | |
3481 | wait(1) | |
3482 | --Debounces.Slashed = false | |
3483 | --end | |
3484 | end | |
3485 | end | |
3486 | elseif ht and hit:IsA("Hat") then | |
3487 | if hit.Parent.Name ~= p.Name then | |
3488 | if hit.Parent:FindFirstChild("Humanoid") then | |
3489 | --[[ if Debounces.Slashing == true and Debounces.Slashed == false then | |
3490 | Debounces.Slashed = true]]-- | |
3491 | hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4) | |
3492 | wait(1) | |
3493 | --Debounces.Slashed = false | |
3494 | end | |
3495 | end | |
3496 | end | |
3497 | end) | |
3498 | for i = 1, 20 do | |
3499 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2) | |
3500 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2) | |
3501 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5) | |
3502 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5) | |
3503 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5) | |
3504 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5) | |
3505 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
3506 | if Debounces.on == false then break end | |
3507 | rs:wait(2) | |
3508 | end | |
3509 | z = Instance.new("Sound",hed) | |
3510 | z.SoundId = "rbxassetid://160069154" | |
3511 | z.Looped = false | |
3512 | z.Pitch = .9 | |
3513 | z1 = Instance.new("Sound",hed) | |
3514 | z1.SoundId = "rbxassetid://160069154" | |
3515 | z1.Looped = false | |
3516 | z1.Pitch = .9 | |
3517 | wait(0.01) | |
3518 | z:Play() | |
3519 | z1:Play() | |
3520 | for i = 1, 20 do | |
3521 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2) | |
3522 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5) | |
3523 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5) | |
3524 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5) | |
3525 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5) | |
3526 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5) | |
3527 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
3528 | if Debounces.on == false then break end | |
3529 | rs:wait(2) | |
3530 | end | |
3531 | for i = 1, 20 do | |
3532 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4) | |
3533 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4) | |
3534 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5) | |
3535 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5) | |
3536 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5) | |
3537 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5) | |
3538 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
3539 | if Debounces.on == false then break end | |
3540 | rs:wait(2) | |
3541 | end | |
3542 | z = Instance.new("Sound",hed) | |
3543 | z.SoundId = "rbxassetid://168586621" | |
3544 | z.Looped = false | |
3545 | z.Pitch = 1 | |
3546 | z1 = Instance.new("Sound",hed) | |
3547 | z1.SoundId = "rbxassetid://168586621" | |
3548 | z1.Looped = false | |
3549 | z1.Pitch = 1 | |
3550 | wait(0.01) | |
3551 | z:Play() | |
3552 | z1:Play() | |
3553 | for i = 1, 20 do | |
3554 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5) | |
3555 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4) | |
3556 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5) | |
3557 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5) | |
3558 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5) | |
3559 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5) | |
3560 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1) | |
3561 | if Debounces.on == false then break end | |
3562 | rs:wait(2) | |
3563 | end | |
3564 | to:disconnect() | |
3565 | - | larm.BrickColor = BrickColor.new("Really black") |
3565 | + | larm.BrickColor = BrickColor.new("Lime green") |
3566 | - | rarm.BrickColor = BrickColor.new("Really black") |
3566 | + | rarm.BrickColor = BrickColor.new("Lime green") |
3567 | if Debounces.CanAttack == false then | |
3568 | Debounces.CanAttack = true | |
3569 | Debounces.on = false | |
3570 | Debounces.NoIdl = false | |
3571 | end | |
3572 | end | |
3573 | end | |
3574 | end) | |
3575 | ---------------------------------------------------- | |
3576 | Sit = false | |
3577 | mouse.KeyDown:connect(function(key) | |
3578 | if key == "v" then | |
3579 | if Sit == false then | |
3580 | Sit = true | |
3581 | hum.WalkSpeed = 0.001 | |
3582 | stanceToggle = "Sitting" | |
3583 | elseif Sit == true then | |
3584 | Sit = false | |
3585 | hum.WalkSpeed = 7 | |
3586 | stanceToggle = "Normal" | |
3587 | end | |
3588 | end | |
3589 | end) | |
3590 | ---------------------------------------------------- | |
3591 | mouse.KeyDown:connect(function(key) | |
3592 | if key == "t" then | |
3593 | if Debounces.CanAttack == true then | |
3594 | Debounces.CanAttack = false | |
3595 | Debounces.on = true | |
3596 | Debounces.NoIdl = true | |
3597 | for i = 1, 20 do | |
3598 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2) | |
3599 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2) | |
3600 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2) | |
3601 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2) | |
3602 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2) | |
3603 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2) | |
3604 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1) | |
3605 | if Debounces.on == false then break end | |
3606 | rs:wait(2.6) | |
3607 | end | |
3608 | Spawn(function() | |
3609 | local Parts = {} | |
3610 | for Y = -5,5 do | |
3611 | local P = Instance.new("Part",char) | |
3612 | P.Anchored = true | |
3613 | P.FormFactor = "Custom" | |
3614 | P.CanCollide = false | |
3615 | P.Size = Vector3.new(1,2,1) | |
3616 | P.TopSurface = "SmoothNoOutlines" | |
3617 | P.BottomSurface = "SmoothNoOutlines" | |
3618 | - | P.BrickColor = BrickColor.new("Really black") |
3618 | + | P.BrickColor = BrickColor.new("Lime green") |
3619 | P.Name = tostring(Y) | |
3620 | local i = (Y+5)/(10) | |
3621 | i = 1-math.cos(math.pi*i-(math.pi/2)) | |
3622 | P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0) | |
3623 | --[[P.Touched:connect(function(ht) | |
3624 | local hit = ht.Parent | |
3625 | if hit:FindFirstChild("Humanoid") then | |
3626 | hit.Humanoid:TakeDamage(math.random(20,50)) | |
3627 | end | |
3628 | end)]]-- | |
3629 | s = Instance.new("Sound",P) | |
3630 | s.SoundId = "rbxassetid://228343271" | |
3631 | s.Volume = .7 | |
3632 | s.Pitch = 0.9 | |
3633 | s:Play() | |
3634 | P.Touched:connect(function(ht) | |
3635 | hit = ht.Parent | |
3636 | if ht and hit:IsA("Model") then | |
3637 | if hit:FindFirstChild("Humanoid") then | |
3638 | if hit.Name ~= p.Name then | |
3639 | --[[if Debounces.Slashing == true and Debounces.Slashed == false then | |
3640 | Debounces.Slashed = true]]-- | |
3641 | hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3)) | |
3642 | hit:FindFirstChild("Humanoid").PlatformStand = true | |
3643 | wait(1) | |
3644 | --Debounces.Slashed = false | |
3645 | --end | |
3646 | end | |
3647 | end | |
3648 | elseif ht and hit:IsA("Hat") then | |
3649 | if hit.Parent.Name ~= p.Name then | |
3650 | if hit.Parent:FindFirstChild("Humanoid") then | |
3651 | --[[if Debounces.Slashing == true and Debounces.Slashed == false then | |
3652 | Debounces.Slashed = true]]-- | |
3653 | hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3)) | |
3654 | hit:FindFirstChild("Humanoid").PlatformStand = true | |
3655 | wait(1) | |
3656 | --Debounces.Slashed = false | |
3657 | --end | |
3658 | end | |
3659 | end | |
3660 | end | |
3661 | end) | |
3662 | Parts[#Parts+1] = P | |
3663 | end | |
3664 | local BREAKIT = false | |
3665 | local CParts = {} | |
3666 | local Rocks = {} | |
3667 | local LastPos = nil | |
3668 | for i = 1,70 do | |
3669 | for i2,v in pairs(Parts) do | |
3670 | v.CFrame = v.CFrame*CFrame.new(0,0,-4) | |
3671 | local cf = v.CFrame | |
3672 | v.Size = v.Size+Vector3.new(0.4,0.35,0) | |
3673 | v.CFrame = cf | |
3674 | v.Transparency = v.Transparency+0.02 | |
3675 | if v.Transparency >= 0.975 then BREAKIT = true end | |
3676 | if v.Name == "0" then | |
3677 | local Ignore = {} | |
3678 | for i,v in pairs(game:GetService("Players"):GetPlayers()) do | |
3679 | if v.Character ~= nil then | |
3680 | Ignore[#Ignore+1] = v.Character | |
3681 | end | |
3682 | end | |
3683 | local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0)) | |
3684 | local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore) | |
3685 | if Hit ~= nil then | |
3686 | if #Rocks == 0 then | |
3687 | for i = 1,5 do | |
3688 | local P = Instance.new("Part",char) | |
3689 | Rocks[#Rocks+1] = P | |
3690 | P.Anchored = true | |
3691 | P.FormFactor = "Custom" | |
3692 | P.BrickColor = Hit.BrickColor | |
3693 | P.Material = Hit.Material | |
3694 | P.TopSurface = "Smooth" | |
3695 | P.BottomSurface = "Smooth" | |
3696 | P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100) | |
3697 | end | |
3698 | end | |
3699 | for i,P in pairs(Rocks) do | |
3700 | P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50))) | |
3701 | end | |
3702 | local P = Instance.new("Part",char) | |
3703 | CParts[#CParts+1] = {P,tick()} | |
3704 | P.Anchored = true | |
3705 | P.FormFactor = "Custom" | |
3706 | P.BrickColor = Hit.BrickColor | |
3707 | P.Material = Hit.Material | |
3708 | P.TopSurface = "Smooth" | |
3709 | P.BottomSurface = "Smooth" | |
3710 | P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100) | |
3711 | Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0) | |
3712 | Pos = Pos.p | |
3713 | P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50))) | |
3714 | local P = P:Clone() | |
3715 | CParts[#CParts+1] = {P,tick()} | |
3716 | P.Parent = char | |
3717 | Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0) | |
3718 | Pos = Pos.p | |
3719 | P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20))) | |
3720 | if LastPos ~= nil then | |
3721 | local P = P:Clone() | |
3722 | CParts[#CParts+1] = {P,tick()} | |
3723 | P.Parent = char | |
3724 | - | P.BrickColor = BrickColor.new("Really black") |
3724 | + | P.BrickColor = BrickColor.new("Lime green") |
3725 | Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0) | |
3726 | Pos = Pos.p | |
3727 | local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0) | |
3728 | P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25) | |
3729 | --P.Velocity = Vector3.new(0,-1000,0) | |
3730 | P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2) | |
3731 | end | |
3732 | LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0) | |
3733 | end | |
3734 | end | |
3735 | end | |
3736 | if BREAKIT then break end | |
3737 | wait(0.002) | |
3738 | end | |
3739 | for i,v in pairs(Rocks) do | |
3740 | CParts[#CParts+1] = {v,tick()} | |
3741 | end | |
3742 | for i,v in pairs(Parts) do | |
3743 | v:Destroy() | |
3744 | end | |
3745 | Parts = nil | |
3746 | while true do | |
3747 | local t = tick() | |
3748 | local p = nil | |
3749 | for i,v in pairs(CParts) do | |
3750 | if t-v[2] > 4 then | |
3751 | v[1].Transparency = v[1].Transparency+0.05 | |
3752 | if v[1].Transparency >= 1 then | |
3753 | v[1]:Destroy() | |
3754 | CParts[i] = nil | |
3755 | end | |
3756 | end | |
3757 | p = v | |
3758 | end | |
3759 | if p == nil then break end | |
3760 | wait(0.002) | |
3761 | end | |
3762 | for i,v in pairs(CParts) do | |
3763 | v:Destroy() | |
3764 | end | |
3765 | CParts = {} | |
3766 | end) | |
3767 | for i = 1, 20 do | |
3768 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4) | |
3769 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4) | |
3770 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4) | |
3771 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4) | |
3772 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4) | |
3773 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4) | |
3774 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1) | |
3775 | if Debounces.on == false then break end | |
3776 | rs:wait(2) | |
3777 | end | |
3778 | if Debounces.CanAttack == false then | |
3779 | Debounces.CanAttack = true | |
3780 | Debounces.on = false | |
3781 | Debounces.NoIdl = false | |
3782 | end | |
3783 | end | |
3784 | end | |
3785 | end) | |
3786 | ---------------------------------------------------- | |
3787 | mouse.KeyDown:connect(function(key) | |
3788 | if key == "e" then | |
3789 | larm.BrickColor = BrickColor.new("Bright red") | |
3790 | rarm.BrickColor = BrickColor.new("Bright red") | |
3791 | if Debounces.CanAttack == true then | |
3792 | Debounces.CanAttack = false | |
3793 | Debounces.on = true | |
3794 | Debounces.NoIdl = true | |
3795 | for i = 1, 18 do | |
3796 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4) | |
3797 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4) | |
3798 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4) | |
3799 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4) | |
3800 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4) | |
3801 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4) | |
3802 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
3803 | if Debounces.on == false then break end | |
3804 | rs:wait(4) | |
3805 | end | |
3806 | local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0)) | |
3807 | local rng = Instance.new("Part", char.Absolution.Handle) | |
3808 | rng.Anchored = true | |
3809 | - | rng.BrickColor = BrickColor.new("Really black") |
3809 | + | rng.BrickColor = BrickColor.new("Lime green") |
3810 | rng.CanCollide = true | |
3811 | rng.FormFactor = 3 | |
3812 | rng.Name = "Ring" | |
3813 | rng.Size = Vector3.new(1, 1, 1) | |
3814 | rng.CanCollide = false | |
3815 | rng.Transparency = 0.35 | |
3816 | rng.TopSurface = 0 | |
3817 | rng.BottomSurface = 0 | |
3818 | rng.CFrame = HandCF | |
3819 | local rngm = Instance.new("SpecialMesh", rng) | |
3820 | rngm.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
3821 | rngm.Scale = Vector3.new(1, 1, 2) | |
3822 | x = Instance.new("Sound", hed) | |
3823 | x.SoundId = "http://www.roblox.com/asset/?id=169445602" | |
3824 | x.Looped = false | |
3825 | x.Pitch = .7 | |
3826 | x.Volume = 1 | |
3827 | x1 = Instance.new("Sound", hed) | |
3828 | x1.SoundId = "http://www.roblox.com/asset/?id=169445602" | |
3829 | x1.Looped = false | |
3830 | x1.Pitch = .7 | |
3831 | x1.Volume = 1 | |
3832 | x:Play() | |
3833 | x1:Play() | |
3834 | rngto = rng.Touched:connect(function(ht) | |
3835 | hit = ht.Parent | |
3836 | if ht and hit:IsA("Model") then | |
3837 | if hit:FindFirstChild("Humanoid") then | |
3838 | if hit.Name ~= p.Name then | |
3839 | --[[if Debounces.Slashing == true and Debounces.Slashed == false then | |
3840 | Debounces.Slashed = true]]-- | |
3841 | hit:FindFirstChild("Humanoid"):TakeDamage(4) | |
3842 | hit:FindFirstChild("Humanoid").PlatformStand = true | |
3843 | hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120 | |
3844 | --Debounces.Slashed = false | |
3845 | --end | |
3846 | end | |
3847 | end | |
3848 | elseif ht and hit:IsA("Hat") then | |
3849 | if hit.Parent.Name ~= p.Name then | |
3850 | if hit.Parent:FindFirstChild("Humanoid") then | |
3851 | --[[ if Debounces.Slashing == true and Debounces.Slashed == false then | |
3852 | Debounces.Slashed = true]]-- | |
3853 | hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4) | |
3854 | hit:FindFirstChild("Humanoid").PlatformStand = true | |
3855 | hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120 | |
3856 | --Debounces.Slashed = false | |
3857 | end | |
3858 | end | |
3859 | end | |
3860 | end) | |
3861 | coroutine.wrap(function() | |
3862 | for i = 1, 60, 2 do | |
3863 | rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1) | |
3864 | rng.Size = rngm.Scale | |
3865 | rng.CFrame = HandCF | |
3866 | rng.Transparency = i/60 | |
3867 | wait() | |
3868 | end | |
3869 | wait() | |
3870 | rng:Destroy() | |
3871 | end)() | |
3872 | for i = 1, 18 do | |
3873 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4) | |
3874 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4) | |
3875 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4) | |
3876 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4) | |
3877 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4) | |
3878 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4) | |
3879 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
3880 | if Debounces.on == false then break end | |
3881 | rs:wait(2.4) | |
3882 | end | |
3883 | - | larm.BrickColor = BrickColor.new("Really black") |
3883 | + | larm.BrickColor = BrickColor.new("Lime green") |
3884 | - | rarm.BrickColor = BrickColor.new("Really black") |
3884 | + | rarm.BrickColor = BrickColor.new("Lime green") |
3885 | x:Destroy() | |
3886 | x1:Destroy() | |
3887 | if Debounces.CanAttack == false then | |
3888 | Debounces.CanAttack = true | |
3889 | Debounces.on = false | |
3890 | Debounces.NoIdl = false | |
3891 | end | |
3892 | end | |
3893 | end | |
3894 | end) | |
3895 | ---------------------------------------------------- | |
3896 | mouse.KeyDown:connect(function(key) | |
3897 | if key == "y" then | |
3898 | if Debounces.CanAttack == true then | |
3899 | Debounces.CanAttack = false | |
3900 | Debounces.on = true | |
3901 | Debounces.NoIdl = true | |
3902 | for i = 1, 15 do | |
3903 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2) | |
3904 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-89)), 0.6) | |
3905 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2) | |
3906 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2) | |
3907 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2) | |
3908 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2) | |
3909 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
3910 | if Debounces.on == false then break end | |
3911 | rs:wait(2.7) | |
3912 | end | |
3913 | x = Instance.new("Sound",char) | |
3914 | x.SoundId = "rbxassetid://228343271" | |
3915 | x.Pitch = 1 | |
3916 | x.Volume = .8 | |
3917 | wait(.1) | |
3918 | x:Play() | |
3919 | Debounces.on = false | |
3920 | Debounces.Here = false | |
3921 | shot = shot + 1 | |
3922 | local rng = Instance.new("Part", char) | |
3923 | rng.Anchored = true | |
3924 | rng.BrickColor = BrickColor.new("Bright blue") | |
3925 | rng.CanCollide = false | |
3926 | rng.FormFactor = 3 | |
3927 | rng.Name = "Ring" | |
3928 | rng.Size = Vector3.new(1, 1, 1) | |
3929 | rng.Transparency = 0.35 | |
3930 | rng.TopSurface = 0 | |
3931 | rng.BottomSurface = 0 | |
3932 | rng2 = rng:clone() | |
3933 | rng3 = rng2:clone() | |
3934 | rng4 = rng2:clone() | |
3935 | local rngm = Instance.new("SpecialMesh", rng) | |
3936 | rngm.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
3937 | rngm.Scale = Vector3.new(10, 10, 1) | |
3938 | rngm2 = rngm:clone() | |
3939 | rngm2.Scale = Vector3.new(5, 5, 3) | |
3940 | rngm3=rngm2:clone() | |
3941 | rngm3.Parent = rng3 | |
3942 | rngm3.Scale = Vector3.new(8, 8, 1) | |
3943 | rngm4 = rngm2:clone() | |
3944 | rngm4.Parent = rng4 | |
3945 | rngm4.Scale = Vector3.new(6, 6, 1) | |
3946 | local bem = Instance.new("Part", char) | |
3947 | bem.Anchored = true | |
3948 | - | bem.BrickColor = BrickColor.new("Really black") |
3948 | + | bem.BrickColor = BrickColor.new("Lime green") |
3949 | bem.CanCollide = false | |
3950 | bem.FormFactor = 3 | |
3951 | bem.Name = "Beam" .. shot | |
3952 | bem.Size = Vector3.new(1, 1, 1) | |
3953 | bem.Transparency = 0.35 | |
3954 | bem.TopSurface = 0 | |
3955 | bem.BottomSurface = 0 | |
3956 | local bemm = Instance.new("SpecialMesh", bem) | |
3957 | bemm.MeshType = 4 | |
3958 | bemm.Scale = Vector3.new(1, 4, 4) | |
3959 | local out = Instance.new("Part", char) | |
3960 | out.Anchored = true | |
3961 | - | out.BrickColor = BrickColor.new("Really black") |
3961 | + | out.BrickColor = BrickColor.new("Lime green") |
3962 | out.CanCollide = false | |
3963 | out.FormFactor = 3 | |
3964 | out.Name = "Out" | |
3965 | out.Size = Vector3.new(4, 4, 4) | |
3966 | out.Transparency = 0.35 | |
3967 | out.TopSurface = 0 | |
3968 | out.BottomSurface = 0 | |
3969 | local outm = Instance.new("SpecialMesh", out) | |
3970 | outm.MeshId = "http://www.roblox.com/asset/?id=1033714" | |
3971 | outm.Scale = Vector3.new(4, 4, 4) | |
3972 | local bnd = Instance.new("Part", char) | |
3973 | bnd.Anchored = true | |
3974 | bnd.BrickColor = BrickColor.new("Bright blue") | |
3975 | bnd.CanCollide = false | |
3976 | bnd.FormFactor = 3 | |
3977 | bnd.Name = "Bend" | |
3978 | bnd.Size = Vector3.new(1, 1, 1) | |
3979 | bnd.Transparency = 1 | |
3980 | bnd.TopSurface = 0 | |
3981 | bnd.BottomSurface = 0 | |
3982 | local bndm = Instance.new("SpecialMesh", bnd) | |
3983 | bndm.MeshType = 3 | |
3984 | bndm.Scale = Vector3.new(8, 8, 8) | |
3985 | out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0) | |
3986 | bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90)) | |
3987 | bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0) | |
3988 | rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0) | |
3989 | rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0) | |
3990 | rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0) | |
3991 | Debounces.Shewt = true | |
3992 | coroutine.wrap(function() | |
3993 | for i = 1, 20, 0.2 do | |
3994 | rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1) | |
3995 | rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1) | |
3996 | rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1) | |
3997 | rng.Transparency = i/20 | |
3998 | rng3.Transparency = 1/24 | |
3999 | rng4.Transparency = i/26 | |
4000 | wait() | |
4001 | end | |
4002 | wait() | |
4003 | rng:Destroy() | |
4004 | end)() | |
4005 | if Debounces.Shewt == true then | |
4006 | char:WaitForChild("Beam" .. shot).Touched:connect(function(ht) | |
4007 | hit = ht.Parent | |
4008 | if hit:IsA("Model") and hit:findFirstChild("Humanoid") then | |
4009 | if HasntTouched(hit.Name) == true and deb == false then | |
4010 | deb = true | |
4011 | coroutine.wrap(function() | |
4012 | hit:FindFirstChild("Humanoid").PlatformStand = true | |
4013 | hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180 | |
4014 | hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73)) | |
4015 | end)() | |
4016 | table.insert(Touche, hit.Name) | |
4017 | deb = false | |
4018 | end | |
4019 | elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then | |
4020 | if HasntTouched(hit.Parent.Name) == true and deb == false then | |
4021 | deb = true | |
4022 | coroutine.wrap(function() | |
4023 | hit.Parent:FindFirstChild("Humanoid").PlatformStand = true | |
4024 | hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180 | |
4025 | wait(1) | |
4026 | hit.Parent:FindFirstChild("Humanoid").PlatformStand = false | |
4027 | end)() | |
4028 | table.insert(Touche, hit.Parent.Name) | |
4029 | deb = false | |
4030 | for i, v in pairs(Touche) do | |
4031 | print(v) | |
4032 | end | |
4033 | end | |
4034 | end | |
4035 | end) | |
4036 | end | |
4037 | for i = 0, 260, 8 do | |
4038 | bem.Size = Vector3.new(i, 2, 2) | |
4039 | bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90)) | |
4040 | bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2) | |
4041 | bnd.Size = Vector3.new(1,1,1) | |
4042 | bndm.Scale = Vector3.new(8,8,8) | |
4043 | if i % 10 == 0 then | |
4044 | local newRng = rng2:Clone() | |
4045 | newRng.Parent = char | |
4046 | newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0) | |
4047 | local newRngm = rngm2:clone() | |
4048 | newRngm.Parent=newRng | |
4049 | coroutine.wrap(function() | |
4050 | for i = 1, 10, 0.2 do | |
4051 | newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3) | |
4052 | newRng.Transparency = i/10 | |
4053 | wait() | |
4054 | end | |
4055 | wait() | |
4056 | newRng:Destroy() | |
4057 | end)() | |
4058 | end | |
4059 | wait() | |
4060 | end | |
4061 | wait() | |
4062 | Debounces.Shewt = false | |
4063 | bem:Destroy() | |
4064 | out:Destroy() | |
4065 | bnd:Destroy() | |
4066 | Debounces.Ready = false | |
4067 | for i, v in pairs(Touche) do | |
4068 | table.remove(Touche, i) | |
4069 | end | |
4070 | wait() | |
4071 | table.insert(Touche, char.Name) | |
4072 | Debounces.NoIdl = false | |
4073 | if Debounces.CanAttack == false then | |
4074 | Debounces.CanAttack = true | |
4075 | end | |
4076 | end | |
4077 | end | |
4078 | end) | |
4079 | ---------------------------------------------------- | |
4080 | sidz = {"231917888", "231917845", "231917806"} | |
4081 | ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1} | |
4082 | mouse.KeyDown:connect(function(key) | |
4083 | if key == "f" then | |
4084 | larm.BrickColor = BrickColor.new("Bright red") | |
4085 | rarm.BrickColor = BrickColor.new("Bright red") | |
4086 | if Debounces.CanAttack == true then | |
4087 | Debounces.CanAttack = false | |
4088 | Debounces.on = true | |
4089 | Debounces.NoIdl = true | |
4090 | for i = 1, 20 do | |
4091 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2) | |
4092 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2) | |
4093 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2) | |
4094 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2) | |
4095 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2) | |
4096 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2) | |
4097 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
4098 | if Debounces.on == false then break end | |
4099 | rs:wait(6) | |
4100 | end | |
4101 | z = Instance.new("Sound",char) | |
4102 | z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)] | |
4103 | z.Pitch = ptz[math.random(1,#ptz)] | |
4104 | z.Volume = 1 | |
4105 | z1 = Instance.new("Sound",char) | |
4106 | z1.SoundId = z.SoundId | |
4107 | z1.Pitch = z.Pitch | |
4108 | z1.Volume = 1 | |
4109 | z:Play() | |
4110 | z1:Play() | |
4111 | Stomp() | |
4112 | for i = 1, 20 do | |
4113 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3) | |
4114 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3) | |
4115 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3) | |
4116 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3) | |
4117 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3) | |
4118 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3) | |
4119 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
4120 | if Debounces.on == false then break end | |
4121 | rs:wait(2.5) | |
4122 | end | |
4123 | if Debounces.CanAttack == false then | |
4124 | Debounces.CanAttack = true | |
4125 | Debounces.on = false | |
4126 | Debounces.NoIdl = false | |
4127 | - | larm.BrickColor = BrickColor.new("Really black") |
4127 | + | larm.BrickColor = BrickColor.new("Lime green") |
4128 | - | rarm.BrickColor = BrickColor.new("Really black") |
4128 | + | rarm.BrickColor = BrickColor.new("Lime green") |
4129 | end | |
4130 | end | |
4131 | end | |
4132 | end) | |
4133 | ---------------------------------------------------- | |
4134 | mouse.KeyDown:connect(function(key) | |
4135 | if key == "g" then | |
4136 | larm.BrickColor = BrickColor.new("Bright red") | |
4137 | rarm.BrickColor = BrickColor.new("Bright red") | |
4138 | if Debounces.CanAttack == true then | |
4139 | Debounces.CanAttack = false | |
4140 | Debounces.on = true | |
4141 | Debounces.NoIdl = true | |
4142 | chrg = lleg.Touched:connect(function(ht) | |
4143 | hit = ht.Parent | |
4144 | if ht and hit:IsA("Model") then | |
4145 | if hit:FindFirstChild("Humanoid") then | |
4146 | if hit.Name ~= p.Name then | |
4147 | --[[if Debounces.Slashing == true and Debounces.Slashed == false then | |
4148 | Debounces.Slashed = true]]-- | |
4149 | hit:FindFirstChild("Humanoid"):TakeDamage(2) | |
4150 | hit:FindFirstChild("Humanoid").PlatformStand = true | |
4151 | hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70 | |
4152 | --Debounces.Slashed = false | |
4153 | --end | |
4154 | end | |
4155 | end | |
4156 | elseif ht and hit:IsA("Hat") then | |
4157 | if hit.Parent.Name ~= p.Name then | |
4158 | if hit.Parent:FindFirstChild("Humanoid") then | |
4159 | --[[ if Debounces.Slashing == true and Debounces.Slashed == false then | |
4160 | Debounces.Slashed = true]]-- | |
4161 | hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2) | |
4162 | hit:FindFirstChild("Humanoid").PlatformStand = true | |
4163 | hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70 | |
4164 | --Debounces.Slashed = false | |
4165 | end | |
4166 | end | |
4167 | end | |
4168 | end) | |
4169 | for i = 1, 14 do | |
4170 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2) | |
4171 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.2) | |
4172 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.2) | |
4173 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.2) | |
4174 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2) | |
4175 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2) | |
4176 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9) | |
4177 | if Debounces.on == false then break end | |
4178 | rs:wait(3) | |
4179 | end | |
4180 | charge() | |
4181 | z = Instance.new("Sound",char) | |
4182 | z.SoundId = "rbxassetid://200632875" | |
4183 | z.Volume = 1 | |
4184 | z.Pitch = .8 | |
4185 | z1 = Instance.new("Sound",char) | |
4186 | z1.SoundId = "rbxassetid://200632875" | |
4187 | z1.Volume = 1 | |
4188 | z1.Pitch = .9 | |
4189 | z:Play() | |
4190 | z1:Play() | |
4191 | wait(1) | |
4192 | z:Destroy() | |
4193 | z1:Destroy() | |
4194 | chrg:disconnect() | |
4195 | if Debounces.CanAttack == false then | |
4196 | Debounces.CanAttack = true | |
4197 | Debounces.on = false | |
4198 | Debounces.NoIdl = false | |
4199 | - | larm.BrickColor = BrickColor.new("Really black") |
4199 | + | larm.BrickColor = BrickColor.new("Lime green") |
4200 | - | rarm.BrickColor = BrickColor.new("Really black") |
4200 | + | rarm.BrickColor = BrickColor.new("Lime green") |
4201 | end | |
4202 | end | |
4203 | end | |
4204 | end) | |
4205 | ---------------------------------------------------- | |
4206 | pt = {0.7, 0.8, 0.9} | |
4207 | mouse.KeyDown:connect(function(key) | |
4208 | if key == "h" then | |
4209 | if Debounces.CanJoke == true then | |
4210 | Debounces.CanJoke = false | |
4211 | u = Instance.new("Sound") | |
4212 | u.SoundId = "http://www.roblox.com/asset/?id=138199573" | |
4213 | u.Parent = char | |
4214 | u.Looped = false | |
4215 | u.Pitch = pt[math.random(1,#pt)] | |
4216 | u.Volume = 1 | |
4217 | u2 = Instance.new("Sound") | |
4218 | u2.SoundId = "http://www.roblox.com/asset/?id=138199573" | |
4219 | u2.Parent = char | |
4220 | u2.Looped = false | |
4221 | u2.Pitch = u.Pitch | |
4222 | u2.Volume = 1 | |
4223 | wait(.01) | |
4224 | u:Play() | |
4225 | u2:Play() | |
4226 | wait(6) | |
4227 | u:Destroy() | |
4228 | u2:Destroy() | |
4229 | if Debounces.CanJoke == false then | |
4230 | Debounces.CanJoke = true | |
4231 | end | |
4232 | end | |
4233 | end | |
4234 | end) | |
4235 | ---------------------------------------------------- | |
4236 | mouse.KeyDown:connect(function(key) | |
4237 | if key == "j" then | |
4238 | if Debounces.CanJoke == true then | |
4239 | Debounces.CanJoke = false | |
4240 | z = Instance.new("Sound",char) | |
4241 | z.SoundId = "rbxassetid://135017755" | |
4242 | z.Pitch = .76 | |
4243 | z.Volume = 1 | |
4244 | wait() | |
4245 | z:Play() | |
4246 | wait(6) | |
4247 | z:Destroy() | |
4248 | if Debounces.CanJoke == false then | |
4249 | Debounces.CanJoke = true | |
4250 | end | |
4251 | end | |
4252 | end | |
4253 | end) | |
4254 | ---------------------------------------------------- | |
4255 | mouse.KeyDown:connect(function(key) | |
4256 | if key == "k" then | |
4257 | if Debounces.CanJoke == true then | |
4258 | Debounces.CanJoke = false | |
4259 | z = Instance.new("Sound",char) | |
4260 | z.SoundId = "rbxassetid://135017578" | |
4261 | z.Pitch = .76 | |
4262 | z.Volume = 1 | |
4263 | wait() | |
4264 | z:Play() | |
4265 | wait(4) | |
4266 | z:Destroy() | |
4267 | if Debounces.CanJoke == false then | |
4268 | Debounces.CanJoke = true | |
4269 | end | |
4270 | end | |
4271 | end | |
4272 | end) | |
4273 | ---------------------------------------------------- | |
4274 | mouse.KeyDown:connect(function(key) | |
4275 | if key == "x" then | |
4276 | if Debounces.CanAttack == true then | |
4277 | Debounces.CanAttack = false | |
4278 | Debounces.NoIdl = true | |
4279 | Debounces.on = true | |
4280 | Debounces.ks = true | |
4281 | for i = 1, 10 do | |
4282 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2) | |
4283 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.2) | |
4284 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2) | |
4285 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2) | |
4286 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2) | |
4287 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.2) | |
4288 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
4289 | if Debounces.on == false then break end | |
4290 | rs:wait(1) | |
4291 | end | |
4292 | z = Instance.new("Sound",hed) | |
4293 | z.SoundId = "rbxassetid://169445092" | |
4294 | z.Volume = 1 | |
4295 | wait(0.1) | |
4296 | z:Play() | |
4297 | kik = rleg.Touched:connect(function(ht) | |
4298 | hit = ht.Parent | |
4299 | if ht and hit:IsA("Model") then | |
4300 | if hit:FindFirstChild("Humanoid") then | |
4301 | if hit.Name ~= p.Name then | |
4302 | --[[if Debounces.Slashing == true and Debounces.Slashed == false then | |
4303 | Debounces.Slashed = true]]-- | |
4304 | if Debounces.ks==true then | |
4305 | z = Instance.new("Sound",hed) | |
4306 | z.SoundId = "rbxassetid://169380525" | |
4307 | z.Volume = 1 | |
4308 | z:Play() | |
4309 | Debounces.ks=false | |
4310 | end | |
4311 | hit:FindFirstChild("Humanoid"):TakeDamage(2) | |
4312 | hit:FindFirstChild("Humanoid").PlatformStand = true | |
4313 | hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70 | |
4314 | --Debounces.Slashed = false | |
4315 | --end | |
4316 | end | |
4317 | end | |
4318 | elseif ht and hit:IsA("Hat") then | |
4319 | if hit.Parent.Name ~= p.Name then | |
4320 | if hit.Parent:FindFirstChild("Humanoid") then | |
4321 | --[[if Debounces.Slashing == true and Debounces.Slashed == false then | |
4322 | Debounces.Slashed = true]]-- | |
4323 | hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2) | |
4324 | hit:FindFirstChild("Humanoid").PlatformStand = true | |
4325 | hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70 | |
4326 | --Debounces.Slashed = false | |
4327 | --end | |
4328 | end | |
4329 | end | |
4330 | end | |
4331 | end) | |
4332 | for i = 1, 8 do | |
4333 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.3) | |
4334 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.3) | |
4335 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3) | |
4336 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3) | |
4337 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.3) | |
4338 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.3) | |
4339 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
4340 | if Debounces.on == false then break end | |
4341 | rs:wait(.7) | |
4342 | end | |
4343 | kik:disconnect() | |
4344 | if Debounces.CanAttack == false then | |
4345 | Debounces.CanAttack = true | |
4346 | Debounces.on = false | |
4347 | Debounces.NoIdl = false | |
4348 | end | |
4349 | end | |
4350 | end | |
4351 | end) | |
4352 | ---------------------------------------------------- | |
4353 | mouse.KeyDown:connect(function(key) | |
4354 | if key == "c" then | |
4355 | if Debounces.CanAttack == true then | |
4356 | Debounces.CanAttack = false | |
4357 | Debounces.NoIdl = true | |
4358 | Debounces.on = true | |
4359 | SIDZ = {"231917744", "231917742"} | |
4360 | PTZ = {0.7, 0.8, 0.9, 1} | |
4361 | for i = 1, 20 do | |
4362 | wait() | |
4363 | for i,v in pairs(char.Absolution:children()) do | |
4364 | if v:IsA("Part") or v:IsA("WedgePart") then | |
4365 | v.Transparency = v.Transparency + 0.05 | |
4366 | end | |
4367 | end | |
4368 | end | |
4369 | function FindNearestTorso(Position,Distance,SinglePlayer) | |
4370 | if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end | |
4371 | local List = {} | |
4372 | for i,v in pairs(workspace:GetChildren())do | |
4373 | if v:IsA("Model")then | |
4374 | if v:findFirstChild("Torso")then | |
4375 | if v ~= char then | |
4376 | if(v.Torso.Position -Position).magnitude <= Distance then | |
4377 | table.insert(List,v) | |
4378 | end | |
4379 | end | |
4380 | end | |
4381 | end | |
4382 | end | |
4383 | return List | |
4384 | end | |
4385 | GroundPound() | |
4386 | for i = 1, 11 do | |
4387 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4) | |
4388 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4) | |
4389 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3) | |
4390 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3) | |
4391 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3) | |
4392 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3) | |
4393 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
4394 | if Debounces.on == false then break end | |
4395 | rs:wait(1.4) | |
4396 | end | |
4397 | GroundPound() | |
4398 | for i = 1, 11 do | |
4399 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4) | |
4400 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4) | |
4401 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3) | |
4402 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3) | |
4403 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3) | |
4404 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3) | |
4405 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
4406 | if Debounces.on == false then break end | |
4407 | rs:wait(1.4) | |
4408 | end | |
4409 | GroundPound() | |
4410 | for i = 1, 11 do | |
4411 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4) | |
4412 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4) | |
4413 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3) | |
4414 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3) | |
4415 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3) | |
4416 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3) | |
4417 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
4418 | if Debounces.on == false then break end | |
4419 | rs:wait(1.4) | |
4420 | end | |
4421 | GroundPound() | |
4422 | for i = 1, 11 do | |
4423 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4) | |
4424 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4) | |
4425 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3) | |
4426 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3) | |
4427 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3) | |
4428 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3) | |
4429 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
4430 | if Debounces.on == false then break end | |
4431 | rs:wait(1.4) | |
4432 | end | |
4433 | GroundPound() | |
4434 | for i = 1, 11 do | |
4435 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4) | |
4436 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4) | |
4437 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3) | |
4438 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3) | |
4439 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3) | |
4440 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3) | |
4441 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
4442 | if Debounces.on == false then break end | |
4443 | rs:wait(1.4) | |
4444 | end | |
4445 | GroundPound() | |
4446 | for i = 1, 11 do | |
4447 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4) | |
4448 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4) | |
4449 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3) | |
4450 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3) | |
4451 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3) | |
4452 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3) | |
4453 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
4454 | if Debounces.on == false then break end | |
4455 | rs:wait(1.4) | |
4456 | end | |
4457 | for i = 1, 24 do | |
4458 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.2) | |
4459 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.2) | |
4460 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2) | |
4461 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2) | |
4462 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2) | |
4463 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2) | |
4464 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
4465 | if Debounces.on == false then break end | |
4466 | rs:wait(3) | |
4467 | end | |
4468 | for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do | |
4469 | if v:FindFirstChild('Humanoid') then | |
4470 | v.Humanoid:TakeDamage(math.random(20,60)) | |
4471 | v.Humanoid.PlatformStand = true | |
4472 | v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100 | |
4473 | end | |
4474 | end | |
4475 | x = Instance.new("Sound",char) | |
4476 | x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)] | |
4477 | x.Pitch = PTZ[math.random(1,#PTZ)] | |
4478 | x.Volume = 1 | |
4479 | wait(0.1) | |
4480 | x:Play() | |
4481 | Crater(hed,20) | |
4482 | for i = 1, 20 do | |
4483 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6) | |
4484 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6) | |
4485 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6) | |
4486 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6) | |
4487 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6) | |
4488 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6) | |
4489 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
4490 | if Debounces.on == false then break end | |
4491 | rs:wait(2) | |
4492 | end | |
4493 | if Debounces.CanAttack == false then | |
4494 | Debounces.CanAttack = true | |
4495 | Debounces.on = false | |
4496 | Debounces.NoIdl = false | |
4497 | for i = 1, 20 do | |
4498 | wait() | |
4499 | for i,v in pairs(char.Absolution:children()) do | |
4500 | if v:IsA("Part") or v:IsA("WedgePart") then | |
4501 | v.Transparency = v.Transparency - 0.05 | |
4502 | end | |
4503 | end | |
4504 | end | |
4505 | end | |
4506 | end | |
4507 | end | |
4508 | end) | |
4509 | ----------------------------------------------------176349813 | |
4510 | mouse.KeyDown:connect(function(key) | |
4511 | if key == "b" then | |
4512 | hum.WalkSpeed = 0.01 | |
4513 | if Debounces.CanAttack == true then | |
4514 | Debounces.CanAttack = false | |
4515 | Debounces.NoIdl = true | |
4516 | Debounces.on = true | |
4517 | for i = 1, 30 do | |
4518 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2) | |
4519 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2) | |
4520 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2) | |
4521 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2) | |
4522 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2) | |
4523 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2) | |
4524 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
4525 | if Debounces.on == false then break end | |
4526 | rs:wait(6) | |
4527 | end | |
4528 | v = Instance.new("Sound") | |
4529 | v.SoundId = "rbxassetid://181384451" | |
4530 | v.Parent = char | |
4531 | v.Looped = false | |
4532 | v.Pitch = .94 | |
4533 | v.Volume = 1 | |
4534 | wait(.01) | |
4535 | v:Play() | |
4536 | ||
4537 | if Daytime == true then | |
4538 | Daytime = false | |
4539 | l.TimeOfDay = 24 | |
4540 | else | |
4541 | Daytime = true | |
4542 | l.TimeOfDay = 12 | |
4543 | l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039) | |
4544 | end | |
4545 | ||
4546 | local Shockwave = function() | |
4547 | local rng1 = Instance.new("Part", char) | |
4548 | rng1.Anchored = true | |
4549 | - | rng1.BrickColor = BrickColor.new("Really black") |
4549 | + | rng1.BrickColor = BrickColor.new("Lime green") |
4550 | rng1.CanCollide = false | |
4551 | rng1.FormFactor = 3 | |
4552 | rng1.Name = "Ring" | |
4553 | rng1.Size = Vector3.new(1, 1, 1) | |
4554 | rng1.Transparency = 0.35 | |
4555 | rng1.TopSurface = 0 | |
4556 | rng1.BottomSurface = 0 | |
4557 | local rngm1 = Instance.new("SpecialMesh", rng) | |
4558 | rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
4559 | rngm1.Scale = Vector3.new(10, 10, 1) | |
4560 | rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0) | |
4561 | local Wave = Instance.new("Part", game.Workspace--[[?]]) | |
4562 | Wave.Name = "Shockwave" | |
4563 | - | Wave.BrickColor = BrickColor.new("Really black") |
4563 | + | Wave.BrickColor = BrickColor.new("Lime green") |
4564 | Wave.Size = Vector3.new(1, 1, 1) | |
4565 | Wave.Shape = "Ball" | |
4566 | Wave.CanCollide = false | |
4567 | Wave.Anchored = true | |
4568 | Wave.TopSurface = 0 | |
4569 | Wave.BottomSurface = 0 | |
4570 | Wave.Touched:connect(function(hit) | |
4571 | if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then | |
4572 | local Occlude = true | |
4573 | local NotOccludes = { | |
4574 | char.Name; | |
4575 | "Wings"; | |
4576 | "Scythe"; | |
4577 | "Thingy"; | |
4578 | "Thingy2"; -- put all of the names in a table pls | |
4579 | } | |
4580 | for i,v in pairs(NotOccludes) do | |
4581 | if hit.Parent.Name == v then | |
4582 | Occlude = false | |
4583 | end | |
4584 | end | |
4585 | --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then | |
4586 | if Occlude then | |
4587 | hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1 | |
4588 | hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120 | |
4589 | end | |
4590 | end | |
4591 | end) | |
4592 | ||
4593 | Instance.new("SpecialMesh", Wave).MeshType = "Sphere" | |
4594 | ||
4595 | coroutine.wrap(function() | |
4596 | for i = 1, 20, 0.2 do | |
4597 | rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1) | |
4598 | rng1.Transparency = i/20 | |
4599 | wait() | |
4600 | end | |
4601 | wait() | |
4602 | rng1:Destroy() | |
4603 | end)() | |
4604 | ||
4605 | Delay(0, function() | |
4606 | ||
4607 | if Daytime == false then | |
4608 | for i = 1, 50, 1 do | |
4609 | Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i) | |
4610 | Wave.CFrame = char.Torso.CFrame | |
4611 | local t = i / 50 | |
4612 | Wave.Transparency = t | |
4613 | wait() | |
4614 | end | |
4615 | else | |
4616 | for i = 1, 50, 1 do | |
4617 | Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i) | |
4618 | Wave.CFrame = char.Torso.CFrame | |
4619 | local t = i / 50 | |
4620 | Wave.Transparency = t | |
4621 | wait() | |
4622 | end | |
4623 | end | |
4624 | Wave:Destroy() | |
4625 | end) | |
4626 | Delay(0, function() | |
4627 | while wait() do | |
4628 | if Wave ~= nil then | |
4629 | Wave.CFrame = char.Torso.CFrame | |
4630 | else | |
4631 | break | |
4632 | end | |
4633 | end | |
4634 | end) | |
4635 | end | |
4636 | Shockwave() | |
4637 | for i = 1, 30 do | |
4638 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.3) | |
4639 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3) | |
4640 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3) | |
4641 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3) | |
4642 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2) | |
4643 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3.2, .3) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2) | |
4644 | if Debounces.on == false then break end | |
4645 | rs:wait() | |
4646 | end | |
4647 | wait(2.4) | |
4648 | Debounces.NoIdl = false | |
4649 | hum.WalkSpeed = 5 | |
4650 | Debounces.on = false | |
4651 | wait() | |
4652 | if Debounces.CanAttack == false then | |
4653 | Debounces.CanAttack = true | |
4654 | v:Destroy() | |
4655 | end | |
4656 | end | |
4657 | end | |
4658 | end) | |
4659 | ---------------------------------------------------- | |
4660 | mouse.KeyDown:connect(function(key) | |
4661 | if key == "l" then | |
4662 | for i = 1, 20 do | |
4663 | wait() | |
4664 | for i,v in pairs(char.Absolution:children()) do | |
4665 | if v:IsA("Part") or v:IsA("WedgePart") then | |
4666 | v.Transparency = v.Transparency + 0.05 | |
4667 | end | |
4668 | end | |
4669 | end | |
4670 | if Debounces.CanAttack == true then | |
4671 | Debounces.CanAttack = false | |
4672 | Debounces.NoIdl = true | |
4673 | Debounces.on = true | |
4674 | bv = Instance.new("BodyVelocity",torso) | |
4675 | bv.maxForce = Vector3.new(0,200000,0) | |
4676 | bv.P = 100000 | |
4677 | bv.velocity = Vector3.new(0,500,0) | |
4678 | wait(2) | |
4679 | bv:Destroy() | |
4680 | if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then | |
4681 | for i = 1, 20 do | |
4682 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3) | |
4683 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3) | |
4684 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(40)), 0.3) | |
4685 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-40)), 0.3) | |
4686 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2) | |
4687 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2) | |
4688 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
4689 | if Debounces.on == false then break end | |
4690 | wait() | |
4691 | end | |
4692 | for i = 1, 360, 20 do wait() | |
4693 | torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0) | |
4694 | end | |
4695 | end | |
4696 | torso.Weld.C1 = CFrame.new(0,-1.2,0) | |
4697 | local ry,ht,ps=nil,nil,nil | |
4698 | while ht==nil do | |
4699 | ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char}) | |
4700 | wait() | |
4701 | end | |
4702 | z = Instance.new("Sound",char) | |
4703 | z.SoundId = "rbxassetid://245537790" | |
4704 | z.Pitch = 1 | |
4705 | z.Volume = 1 | |
4706 | wait(0.1) | |
4707 | z:Play() | |
4708 | local sp = Instance.new("Part", char) | |
4709 | sp.Name = "Energy" | |
4710 | - | sp.BrickColor = BrickColor.new("Really black") |
4710 | + | sp.BrickColor = BrickColor.new("Lime green") |
4711 | sp.Size = Vector3.new(1, 1, 1) | |
4712 | sp.Shape = "Ball" | |
4713 | sp.CanCollide = false | |
4714 | sp.Anchored = true | |
4715 | sp.TopSurface = 0 | |
4716 | sp.BottomSurface = 0 | |
4717 | local spm = Instance.new("SpecialMesh",sp) | |
4718 | spm.MeshId = "rbxassetid://9982590" | |
4719 | spm.Scale = Vector3.new(3,3,3) | |
4720 | local sp2 = Instance.new("Part", char) | |
4721 | sp2.Name = "Energy2" | |
4722 | - | sp2.BrickColor = BrickColor.new("Really black") |
4722 | + | sp2.BrickColor = BrickColor.new("Lime green") |
4723 | sp2.Size = Vector3.new(1, 1, 1) | |
4724 | sp2.Shape = "Ball" | |
4725 | sp2.CanCollide = false | |
4726 | sp2.Anchored = true | |
4727 | sp2.TopSurface = 0 | |
4728 | sp2.BottomSurface = 0 | |
4729 | local spm2 = Instance.new("SpecialMesh",sp2) | |
4730 | spm2.MeshId = "rbxassetid://9982590" | |
4731 | spm2.Scale = Vector3.new(3,3,3) | |
4732 | sp.Touched:connect(function(hit) | |
4733 | if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then | |
4734 | local Occlude = true | |
4735 | local NotOccludes = { | |
4736 | char.Name; | |
4737 | "Wings"; | |
4738 | "Scythe"; | |
4739 | "Thingy"; | |
4740 | "Thingy2"; -- put all of the names in a table pls | |
4741 | } | |
4742 | for i,v in pairs(NotOccludes) do | |
4743 | if hit.Parent.Name == v then | |
4744 | Occlude = false | |
4745 | end | |
4746 | end | |
4747 | --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then | |
4748 | if Occlude then | |
4749 | hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80 | |
4750 | hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120 | |
4751 | end | |
4752 | end | |
4753 | end) | |
4754 | sp2.Touched:connect(function(hit) | |
4755 | if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then | |
4756 | local Occlude = true | |
4757 | local NotOccludes = { | |
4758 | char.Name; | |
4759 | "Wings"; | |
4760 | "Scythe"; | |
4761 | "Thingy"; | |
4762 | "Thingy2"; -- put all of the names in a table pls | |
4763 | } | |
4764 | for i,v in pairs(NotOccludes) do | |
4765 | if hit.Parent.Name == v then | |
4766 | Occlude = false | |
4767 | end | |
4768 | end | |
4769 | --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then | |
4770 | if Occlude then | |
4771 | hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1 | |
4772 | hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120 | |
4773 | end | |
4774 | end | |
4775 | end) | |
4776 | for i = 1, 100, 1 do | |
4777 | sp.Size = Vector3.new(1 + i, 1 + i, 1 + i) | |
4778 | sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i) | |
4779 | sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i)) | |
4780 | sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i)) | |
4781 | spm.Scale = sp.Size | |
4782 | spm2.Scale = sp2.Size | |
4783 | local t = i / 100 | |
4784 | sp.Transparency = t | |
4785 | sp2.Transparency = t | |
4786 | wait() | |
4787 | end | |
4788 | sp:Destroy() | |
4789 | sp2:Destroy() | |
4790 | z:Destroy() | |
4791 | for i = 1, 20 do | |
4792 | wait() | |
4793 | for i,v in pairs(char.Absolution:children()) do | |
4794 | if v:IsA("Part") or v:IsA("WedgePart") then | |
4795 | v.Transparency = v.Transparency - 0.05 | |
4796 | end | |
4797 | end | |
4798 | end | |
4799 | if Debounces.CanAttack == false then | |
4800 | Debounces.CanAttack = true | |
4801 | Debounces.NoIdl = false | |
4802 | Debounces.on = false | |
4803 | end | |
4804 | end | |
4805 | end | |
4806 | end) | |
4807 | ---------------------------------------------------- | |
4808 | local orbt={} | |
4809 | local stlt={} | |
4810 | local chot={} | |
4811 | local cfxt={} | |
4812 | local pfxt={} | |
4813 | local cns=0 | |
4814 | local cnOrb=nil | |
4815 | mouse.KeyDown:connect(function(key) | |
4816 | if key == "u" then | |
4817 | if Debounces.CanAttack == true then | |
4818 | Debounces.CanAttack = false | |
4819 | Debounces.NoIdl = true | |
4820 | Debounces.on = true | |
4821 | orbt={} | |
4822 | stlt={} | |
4823 | chot={} | |
4824 | cfxt={} | |
4825 | for i = 1, 20 do | |
4826 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(30)), 0.2) | |
4827 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(170),math.rad(-20),math.rad(-30)), 0.2) | |
4828 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2) | |
4829 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2) | |
4830 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0.4) * CFrame.Angles(math.rad(-20), math.rad(20), math.rad(-10)), 0.2) | |
4831 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, -0.4) * CFrame.Angles(math.rad(20), math.rad(-10), math.rad(10)), 0.2) | |
4832 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
4833 | if Debounces.on == false then end | |
4834 | rs:wait() | |
4835 | end | |
4836 | z = Instance.new("Sound",char) | |
4837 | z.SoundId = "rbxassetid://170053944" | |
4838 | z.Pitch = 1.07 | |
4839 | z.Volume = 1 | |
4840 | wait(0.1) | |
4841 | z:Play() | |
4842 | - | cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black") |
4842 | + | cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Lime green") |
4843 | debris:AddItem(cnOrb,50) | |
4844 | cnOrb.Mesh.MeshType=3 | |
4845 | table.insert(orbt,cnOrb) | |
4846 | table.insert(stlt,cnOrb) | |
4847 | local nt=0 | |
4848 | for i=0,5,0.02 do | |
4849 | nt=nt+1 | |
4850 | cns=i | |
4851 | if nt>=2 then | |
4852 | nt=0 | |
4853 | - | local cho=nwPrt(mod3,Vector3.new(2,2,2),cnOrb.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Really black") |
4853 | + | local cho=nwPrt(mod3,Vector3.new(2,2,2),cnOrb.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Lime green") |
4854 | debris:AddItem(cho,1) | |
4855 | cho.Mesh.MeshType=3 | |
4856 | table.insert(chot,cho) | |
4857 | end | |
4858 | cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1) | |
4859 | cnOrb.Mesh.Scale=Vector3.new(i,i,i) | |
4860 | wait() | |
4861 | end | |
4862 | for i = 1, 14 do | |
4863 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6) | |
4864 | if Debounces.on == false then end | |
4865 | rs:wait() | |
4866 | end | |
4867 | coroutine.wrap(function() | |
4868 | for i = 1, 20 do | |
4869 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.45) | |
4870 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.8,-.3)*CFrame.Angles(math.rad(70),math.rad(20),math.rad(50)), 0.6) | |
4871 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5) | |
4872 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5) | |
4873 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, -0.4) * CFrame.Angles(math.rad(60), math.rad(20), math.rad(-10)), 0.5) | |
4874 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0.4) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(10)), 0.5) | |
4875 | if Debounces.on == false then end | |
4876 | rs:wait() | |
4877 | end | |
4878 | end)() | |
4879 | wait(0.1) | |
4880 | stlt={} | |
4881 | local ry,ht,ps=newRay(root.CFrame*CFrame.new(0,0,-4),root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)*CFrame.new(0,0,-2),160,{char}) | |
4882 | cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0) | |
4883 | local nt=0 | |
4884 | for i=0,160,3 do | |
4885 | cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3) | |
4886 | nt=nt+1 | |
4887 | if nt>=6 then | |
4888 | nt=0 | |
4889 | - | local cfx=nwPrt(mod3,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,0),"Really black") |
4889 | + | local cfx=nwPrt(mod3,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,0),"Lime green") |
4890 | cfx.Mesh.MeshId="rbxassetid://20329976" | |
4891 | cfx.Transparency=0.4 | |
4892 | table.insert(cfxt,cfx) | |
4893 | debris:AddItem(cfx,1) | |
4894 | end | |
4895 | if (cnOrb.Position-ps).magnitude<6 then | |
4896 | break | |
4897 | end | |
4898 | wait() | |
4899 | end | |
4900 | orbt={} | |
4901 | ||
4902 | for i=0,1,0.1 do | |
4903 | local cs=cnOrb.Mesh.Scale | |
4904 | cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,10,i),Tween(cs.Y,10,i),Tween(cs.Z,10,i)) | |
4905 | wait() | |
4906 | end | |
4907 | - | local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black") |
4907 | + | local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Lime green") |
4908 | ofx.Transparency=0.5 | |
4909 | ofx.Mesh.MeshType=3 | |
4910 | ofx.Mesh.Scale=Vector3.new(30,30,30) | |
4911 | for _,v in pairs(game:service"Players":GetChildren()) do | |
4912 | pcall(function() | |
4913 | for _,c in pairs(v.Character:GetChildren()) do | |
4914 | if v~=p and c:IsA("Part") and (cnOrb.CFrame.p-c.CFrame.p).magnitude<60 and (cnOrb.CFrame.p-c.CFrame.p).magnitude>15 then | |
4915 | local hrp=v.Character:FindFirstChild("HumanoidRootPart") | |
4916 | hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150 | |
4917 | end | |
4918 | end | |
4919 | end) | |
4920 | end | |
4921 | for i=0,1,0.05 do | |
4922 | local cs=cnOrb.Mesh.Scale | |
4923 | cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i)) | |
4924 | local ofs=ofx.Mesh.Scale | |
4925 | ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i)) | |
4926 | ofx.Transparency=Tween(ofx.Transparency,1,i) | |
4927 | wait() | |
4928 | end | |
4929 | ofx:Destroy() | |
4930 | cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0) | |
4931 | - | local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black") |
4931 | + | local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Lime green") |
4932 | cnfx.Mesh.MeshType=3 | |
4933 | cnOrb.Transparency=0.05 | |
4934 | - | local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black") |
4934 | + | local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Lime green") |
4935 | cnr.Mesh.MeshType=3 | |
4936 | - | local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Really black") |
4936 | + | local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Lime green") |
4937 | rn1.Transparency=1 | |
4938 | rn1.Mesh.MeshId="rbxassetid://3270017" | |
4939 | - | local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black") |
4939 | + | local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Lime green") |
4940 | rn2.Transparency=1 | |
4941 | rn2.Mesh.MeshId="rbxassetid://3270017" | |
4942 | local nt=0 | |
4943 | local cs=nil | |
4944 | for i=0,1,0.05 do | |
4945 | cs=cnOrb.Mesh.Scale | |
4946 | cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i)) | |
4947 | local fs=cnfx.Mesh.Scale | |
4948 | cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i)) | |
4949 | cnfx.Transparency=cnfx.Transparency+0.05 | |
4950 | rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i)) | |
4951 | rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i)) | |
4952 | rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3)) | |
4953 | rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3)) | |
4954 | rn1.Transparency=Tween(rn1.Transparency,0.8,i) | |
4955 | rn2.Transparency=Tween(rn2.Transparency,0.8,i) | |
4956 | local rs=cnr.Mesh.Scale | |
4957 | cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i)) | |
4958 | nt=nt+1 | |
4959 | if nt>=6 then | |
4960 | local pls={} | |
4961 | for _,v in pairs(game.Players:GetChildren()) do | |
4962 | table.insert(pls,v) | |
4963 | end | |
4964 | local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls) | |
4965 | - | local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black") |
4965 | + | local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Lime green") |
4966 | pffx.Mesh.MeshId="rbxassetid://20329976" | |
4967 | pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z) | |
4968 | debris:AddItem(pffx,2) | |
4969 | table.insert(pfxt,pffx) | |
4970 | nt=0 | |
4971 | end | |
4972 | wait() | |
4973 | end | |
4974 | local int=0 | |
4975 | coroutine.wrap(function() | |
4976 | for i=1,500 do | |
4977 | rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5)) | |
4978 | rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5)) | |
4979 | nt=nt+1 | |
4980 | int=int+1 | |
4981 | local htd={p} | |
4982 | for _,v in pairs(game:service"Players":GetChildren()) do | |
4983 | pcall(function() | |
4984 | for _,c in pairs(v.Character:GetChildren()) do | |
4985 | if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then | |
4986 | v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2 | |
4987 | v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0) | |
4988 | table.insert(htd,v) | |
4989 | end | |
4990 | end | |
4991 | end) | |
4992 | end | |
4993 | htd={p} | |
4994 | if int>=6 then | |
4995 | for _,v in pairs(game:service"Players":GetChildren()) do | |
4996 | pcall(function() | |
4997 | for _,c in pairs(v.Character:GetChildren()) do | |
4998 | if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then | |
4999 | table.insert(htd,v) | |
5000 | - | local hfx=nwPrt(mod3,Vector3.new(1,1,1),c.CFrame*CFrame.new(math.random(-2,2),math.random(-2,2),math.random(-2,2)),"Really black") |
5000 | + | local hfx=nwPrt(mod3,Vector3.new(1,1,1),c.CFrame*CFrame.new(math.random(-2,2),math.random(-2,2),math.random(-2,2)),"Lime green") |
5001 | hfx.Mesh.Scale=Vector3.new(2,2,2) | |
5002 | hfx.Mesh.MeshType=3 | |
5003 | debris:AddItem(hfx,2) | |
5004 | coroutine.wrap(function() | |
5005 | pcall(function() | |
5006 | for i=0,1,0.05 do | |
5007 | pcall(function() | |
5008 | local hs=hfx.Mesh.Scale | |
5009 | hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i) | |
5010 | hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i)) | |
5011 | end) | |
5012 | wait() | |
5013 | end | |
5014 | hfx:Destroy() | |
5015 | end) | |
5016 | end)() | |
5017 | end | |
5018 | end | |
5019 | end) | |
5020 | end | |
5021 | int=0 | |
5022 | end | |
5023 | if nt>=4 then | |
5024 | local pls={} | |
5025 | for _,v in pairs(game.Players:GetChildren()) do | |
5026 | table.insert(pls,v) | |
5027 | end | |
5028 | local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls) | |
5029 | - | local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black") |
5029 | + | local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Lime green") |
5030 | pffx.Transparency=0.4 | |
5031 | pffx.Mesh.MeshId="rbxassetid://20329976" | |
5032 | pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10) | |
5033 | debris:AddItem(pffx,2) | |
5034 | table.insert(pfxt,pffx) | |
5035 | nt=0 | |
5036 | end | |
5037 | wait() | |
5038 | end | |
5039 | cnOrb:Destroy() | |
5040 | cnfx:Destroy() | |
5041 | for _,v in pairs(mod3:GetChildren()) do | |
5042 | v:Destroy() | |
5043 | end | |
5044 | orbt={} | |
5045 | stlt={} | |
5046 | chot={} | |
5047 | cfxt={} | |
5048 | pfxt={} | |
5049 | end)() | |
5050 | if Debounces.CanAttack == false then | |
5051 | Debounces.CanAttack = true | |
5052 | Debounces.NoIdl = false | |
5053 | Debounces.on = false | |
5054 | end | |
5055 | end | |
5056 | end | |
5057 | end) | |
5058 | ---------------------------------------------------- | |
5059 | mouse.KeyDown:connect(function(key) | |
5060 | if key == "m" then | |
5061 | if Debounces.CanAttack == true then | |
5062 | Debounces.CanAttack = false | |
5063 | Debounces.on = true | |
5064 | Debounces.NoIdl = true | |
5065 | --[[x = Instance.new("Sound",char) | |
5066 | x.SoundId = "http://www.roblox.com/asset/?id=169445572" | |
5067 | x.Looped = false | |
5068 | x.Pitch = 1.1 | |
5069 | x.Volume = 1 | |
5070 | x:Play() | |
5071 | x2 = Instance.new("Sound",char) | |
5072 | x2.SoundId = "http://www.roblox.com/asset/?id=169380495" | |
5073 | x2.Looped = false | |
5074 | x2.Pitch = .7 | |
5075 | x2.Volume = 1 | |
5076 | wait(.1) | |
5077 | x:Play() | |
5078 | x2:Play() | |
5079 | for i = 1, 20 do | |
5080 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad (45),math.rad(0),math.rad(32)), 0.2) | |
5081 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad (0),math.rad(0),math.rad(-20)), 0.2) | |
5082 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (- 8),math.rad(-40), math.rad(-8)),0.2) | |
5083 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles (math.rad (-50), math.rad(40), math.rad(0)), 0.2) | |
5084 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles (math.rad (30), 0, math.rad(20)), 0.2) | |
5085 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles (math.rad(- 10), math.rad(-40), math.rad(0)), 0.2) | |
5086 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4) | |
5087 | if Debounces.on == false then break end | |
5088 | wait() | |
5089 | x:Destroy() | |
5090 | x2:Destroy() | |
5091 | end | |
5092 | wait(1)]]-- | |
5093 | local rng = Instance.new("Part", char) | |
5094 | rng.Anchored = true | |
5095 | - | rng.BrickColor = BrickColor.new("Really black") |
5095 | + | rng.BrickColor = BrickColor.new("Lime green") |
5096 | rng.CanCollide = false | |
5097 | rng.FormFactor = 3 | |
5098 | rng.Name = "Ring" | |
5099 | rng.Size = Vector3.new(1, 1, 1) | |
5100 | rng.Transparency = 0.35 | |
5101 | rng.TopSurface = 0 | |
5102 | rng.BottomSurface = 0 | |
5103 | rng.Position = torso.Position - Vector3.new(0,5,0) | |
5104 | rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0)) | |
5105 | local rngm = Instance.new("SpecialMesh", rng) | |
5106 | rngm.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
5107 | rngm.Scale = Vector3.new(1, 1, 2) | |
5108 | x = Instance.new("Sound",char) | |
5109 | x.SoundId = "http://www.roblox.com/asset/?id=169445602" | |
5110 | x.Looped = false | |
5111 | x.Pitch = .7 | |
5112 | x.Volume = 1 | |
5113 | x:Play() | |
5114 | coroutine.wrap(function() | |
5115 | for i = 1, 60, 2 do | |
5116 | rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1) | |
5117 | rng.Transparency = i/60 | |
5118 | wait() | |
5119 | end | |
5120 | wait() | |
5121 | rng:Destroy() | |
5122 | end)() | |
5123 | hum.WalkSpeed = 100 | |
5124 | BV = Instance.new("BodyVelocity", torso) | |
5125 | BV.maxForce = Vector3.new(0,200000,0) | |
5126 | BV.P = 240000 | |
5127 | BV.velocity = Vector3.new(0,700,0) | |
5128 | for i = 1, 20 do | |
5129 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7) | |
5130 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7) | |
5131 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7) | |
5132 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7) | |
5133 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7) | |
5134 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7) | |
5135 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
5136 | if Debounces.on == false then break end | |
5137 | wait() | |
5138 | end | |
5139 | x:Destroy() | |
5140 | BV:Destroy() | |
5141 | --[[for i = 1, 30 do | |
5142 | 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) | |
5143 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad (0), math.rad(0)), 0.3) | |
5144 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3) | |
5145 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3) | |
5146 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3) | |
5147 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3) | |
5148 | if Debounces.on == false then break end | |
5149 | wait() | |
5150 | end]]-- | |
5151 | if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then | |
5152 | for i = 1, 30 do | |
5153 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3) | |
5154 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3) | |
5155 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-120)), 0.3) | |
5156 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(120)), 0.3) | |
5157 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2) | |
5158 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2) | |
5159 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
5160 | if Debounces.on == false then break end | |
5161 | wait() | |
5162 | end | |
5163 | end | |
5164 | Debounces.on = false | |
5165 | Debounces.NoIdl = false | |
5166 | local ry,ht,ps=nil,nil,nil | |
5167 | while ht==nil do | |
5168 | ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char}) | |
5169 | wait() | |
5170 | end | |
5171 | z = Instance.new("Sound",char) | |
5172 | z.SoundId = "rbxassetid://142070127" | |
5173 | z.Volume = 1 | |
5174 | wait(.1) | |
5175 | z:Play() | |
5176 | Landing() | |
5177 | hum.WalkSpeed = 8 | |
5178 | if Debounces.CanAttack == false then | |
5179 | Debounces.CanAttack = true | |
5180 | end | |
5181 | end | |
5182 | end | |
5183 | end) | |
5184 | ---------------------------------------------------- | |
5185 | Grab = false | |
5186 | mouse.KeyDown:connect(function(key) | |
5187 | if key == "z" then | |
5188 | Debounces.on = true | |
5189 | Debounces.NoIdl = true | |
5190 | if Grab == false then | |
5191 | gp = nil | |
5192 | con1=larm.Touched:connect(function(hit) -- this is grab | |
5193 | ht = hit.Parent | |
5194 | hum1=ht:FindFirstChild('Humanoid') | |
5195 | if hum1 ~= nil then | |
5196 | hum1.PlatformStand=true | |
5197 | gp = ht | |
5198 | Grab = true | |
5199 | asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0)) | |
5200 | asd.Parent = larm | |
5201 | asd.Name = "asd" | |
5202 | asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0) | |
5203 | con1:disconnect() | |
5204 | elseif hum1 ~= nil then | |
5205 | con1:disconnect() | |
5206 | wait() return | |
5207 | end | |
5208 | end) | |
5209 | for i = 1, 18 do | |
5210 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2) | |
5211 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2) | |
5212 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2) | |
5213 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2) | |
5214 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2) | |
5215 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2) | |
5216 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9) | |
5217 | if Debounces.on == false then break end | |
5218 | wait() | |
5219 | end | |
5220 | con1:disconnect() | |
5221 | Debounces.on = false | |
5222 | Debounces.NoIdl = false | |
5223 | elseif Grab == true then | |
5224 | Grab = false | |
5225 | for i = 1, 20 do | |
5226 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2) | |
5227 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1) | |
5228 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2) | |
5229 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2) | |
5230 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2) | |
5231 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2) | |
5232 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
5233 | if Debounces.on == false then end | |
5234 | wait() | |
5235 | end | |
5236 | if gp ~= nil then | |
5237 | for i,v in pairs(larm:GetChildren()) do | |
5238 | if v.Name == "asd" and v:IsA("Weld") then | |
5239 | v:Remove() | |
5240 | end | |
5241 | end | |
5242 | bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso")) | |
5243 | bv.maxForce = Vector3.new(400000, 400000, 400000) | |
5244 | bv.P = 125000 | |
5245 | bv.velocity = char.Head.CFrame.lookVector * 200 | |
5246 | for i = 1, 12 do | |
5247 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5) | |
5248 | if Debounces.on == false then end | |
5249 | wait() | |
5250 | end-- | |
5251 | ht=nil | |
5252 | Spawn(function() | |
5253 | wait(0.5) | |
5254 | bv:Destroy() | |
5255 | end) | |
5256 | Debounces.on = false | |
5257 | Debounces.NoIdl = false | |
5258 | elseif ht == nil then wait() | |
5259 | Grab = false | |
5260 | Debounces.on = false | |
5261 | Debounces.NoIdl = false | |
5262 | end | |
5263 | end | |
5264 | end | |
5265 | end) | |
5266 | ---------------------------------------------------- | |
5267 | mouse.KeyDown:connect(function(key) | |
5268 | if string.byte(key) == 52 then | |
5269 | char.Humanoid.WalkSpeed = 21 | |
5270 | end | |
5271 | end) | |
5272 | mouse.KeyUp:connect(function(key) | |
5273 | if string.byte(key) == 52 then | |
5274 | char.Humanoid.WalkSpeed = 5 | |
5275 | end | |
5276 | end) | |
5277 | ---------------------------------------------------- | |
5278 | Change = false | |
5279 | mouse.KeyDown:connect(function(key) | |
5280 | if key == "n" then | |
5281 | if Change == false then | |
5282 | Change = true | |
5283 | stanceToggle = "Normal2" | |
5284 | elseif Change == true then | |
5285 | Change = false | |
5286 | stanceToggle = "Normal" | |
5287 | end | |
5288 | end | |
5289 | end) | |
5290 | ---------------------------------------------------- | |
5291 | local animpose = "Idle" | |
5292 | local lastanimpose = "Idle" | |
5293 | local sine = 0 | |
5294 | local change = 1 | |
5295 | local val = 0 | |
5296 | local ffing = false | |
5297 | local och = 0 | |
5298 | ---------------------------------------------------- | |
5299 | game:GetService("RunService").RenderStepped:connect(function() | |
5300 | --[[if char.Humanoid.Jump == true then | |
5301 | jump = true | |
5302 | else | |
5303 | jump = false | |
5304 | end]] | |
5305 | char.Humanoid.FreeFalling:connect(function(f) | |
5306 | if f then | |
5307 | ffing = true | |
5308 | else | |
5309 | ffing = false | |
5310 | end | |
5311 | end) | |
5312 | sine = sine + change | |
5313 | if jumpn == true then | |
5314 | animpose = "Jumping" | |
5315 | elseif ffing == true then | |
5316 | animpose = "Freefalling" | |
5317 | elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then | |
5318 | animpose = "Idle" | |
5319 | elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then | |
5320 | animpose = "Walking" | |
5321 | elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then | |
5322 | animpose = "Running" | |
5323 | end | |
5324 | if animpose ~= lastanimpose then | |
5325 | sine = 0 | |
5326 | if Debounces.NoIdl == false then | |
5327 | if animpose == "Idle" then | |
5328 | for i = 1, 2 do | |
5329 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2) | |
5330 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2) | |
5331 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2) | |
5332 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2) | |
5333 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2) | |
5334 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2) | |
5335 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
5336 | end | |
5337 | elseif animpose == "Walking" then | |
5338 | for i = 1, 2 do | |
5339 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(20)), 0.2) | |
5340 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2) | |
5341 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2) | |
5342 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2) | |
5343 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4) | |
5344 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4) | |
5345 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
5346 | end | |
5347 | elseif animpose == "Running" then | |
5348 | for i = 1, 2 do | |
5349 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2) | |
5350 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2) | |
5351 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2) | |
5352 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2) | |
5353 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4) | |
5354 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4) | |
5355 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
5356 | end | |
5357 | rs:wait(2) | |
5358 | end | |
5359 | else | |
5360 | end | |
5361 | end | |
5362 | lastanimpose = animpose | |
5363 | if Debounces.NoIdl == false then | |
5364 | if animpose == "Idle" then | |
5365 | if stanceToggle == "Normal" then | |
5366 | change = 0.5 | |
5367 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2) | |
5368 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2) | |
5369 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2) | |
5370 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2) | |
5371 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2) | |
5372 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2) | |
5373 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
5374 | elseif stanceToggle == "Sitting" then | |
5375 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2) | |
5376 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(math.rad(-36+1*math.cos(sine/14)), math.rad(0), math.rad(-30)), 0.2) | |
5377 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2) | |
5378 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.8, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2) | |
5379 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2) | |
5380 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2) | |
5381 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
5382 | elseif stanceToggle == "Normal2" then | |
5383 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(30+2*math.cos(sine/14)),math.rad(40),math.rad(40)), 0.2) | |
5384 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-20),math.rad(30),math.rad(-40-2*math.cos(sine/14))), 0.2) | |
5385 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(-40),0), 0.2) | |
5386 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2) | |
5387 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(-20), math.rad(-14)), 0.2) | |
5388 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(10), math.rad(-30), math.rad(18)), 0.2) | |
5389 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
5390 | end | |
5391 | elseif animpose == "Walking" then | |
5392 | if stanceToggle == "Normal" then | |
5393 | change = 1 | |
5394 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2) | |
5395 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.2) | |
5396 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0-8*math.cos(sine/14)), math.rad(0)),0.2) | |
5397 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), math.rad(0+8*math.cos(sine/14)), math.rad(0)), 0.2) | |
5398 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + -math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4) | |
5399 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4) | |
5400 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1) | |
5401 | elseif stanceToggle == "Normal2" then | |
5402 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), math.sin(sine/14)/2)*CFrame.Angles(-math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(20)), 0.2) | |
5403 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(-20)), 0.2) | |
5404 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2) | |
5405 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2) | |
5406 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .4) | |
5407 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .4) | |
5408 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
5409 | end | |
5410 | elseif animpose == "Running" then | |
5411 | change = 1 | |
5412 | rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2) | |
5413 | larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2) | |
5414 | hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2) | |
5415 | torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2) | |
5416 | lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4) | |
5417 | rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4) | |
5418 | cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1) | |
5419 | end | |
5420 | end | |
5421 | och=och+1 | |
5422 | for _,v in pairs(orbt) do | |
5423 | pcall(function() | |
5424 | v.Mesh.Scale=Vector3.new(cns+(0.2*math.cos(och/12)),cns+(0.2*math.cos(och/10)),cns+(0.2*math.cos(och/8))) | |
5425 | end) | |
5426 | end | |
5427 | for _,v in pairs(stlt) do | |
5428 | pcall(function() | |
5429 | v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1) | |
5430 | end) | |
5431 | end | |
5432 | for _,v in pairs(chot) do | |
5433 | pcall(function() | |
5434 | v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1) | |
5435 | v.Mesh.Scale=Vector3.new(Tween(v.Mesh.Scale.X,0,0.1),Tween(v.Mesh.Scale.Y,0,0.1),Tween(v.Mesh.Scale.Z,0,0.1)) | |
5436 | end) | |
5437 | end | |
5438 | for _,v in pairs(cfxt) do | |
5439 | pcall(function() | |
5440 | local vs=v.Mesh.Scale | |
5441 | v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5) | |
5442 | v.Transparency=v.Transparency+0.05 | |
5443 | end) | |
5444 | end | |
5445 | for _,v in pairs(pfxt) do | |
5446 | pcall(function() | |
5447 | local vs=v.Mesh.Scale | |
5448 | v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2) | |
5449 | v.Transparency=v.Transparency+0.025 | |
5450 | end) | |
5451 | end | |
5452 | end) |