SHOW:
|
|
- or go back to the newest paste.
1 | if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end | |
2 | local Player,game,owner = owner,game | |
3 | local RealPlayer = Player | |
4 | do | |
5 | print("FE Compatibility code by Mokiros") | |
6 | local rp = RealPlayer | |
7 | script.Parent = rp.Character | |
8 | ||
9 | --RemoteEvent for communicating | |
10 | local Event = Instance.new("RemoteEvent") | |
11 | Event.Name = "UserInput_Event" | |
12 | ||
13 | --Fake event to make stuff like Mouse.KeyDown work | |
14 | local function fakeEvent() | |
15 | local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end} | |
16 | t.connect = t.Connect | |
17 | return t | |
18 | end | |
19 | ||
20 | --Creating fake input objects with fake variables | |
21 | local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()} | |
22 | local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()} | |
23 | local CAS = {Actions={},BindAction=function(self,name,fun,touch,...) | |
24 | CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil | |
25 | end} | |
26 | --Merged 2 functions into one by checking amount of arguments | |
27 | CAS.UnbindAction = CAS.BindAction | |
28 | ||
29 | --This function will trigger the events that have been :Connect()'ed | |
30 | local function te(self,ev,...) | |
31 | local t = m[ev] | |
32 | if t and t._fakeEvent then | |
33 | for _,f in pairs(t.Functions) do | |
34 | f(...) | |
35 | end | |
36 | end | |
37 | end | |
38 | m.TrigEvent = te | |
39 | UIS.TrigEvent = te | |
40 | ||
41 | Event.OnServerEvent:Connect(function(plr,io) | |
42 | if plr~=rp then return end | |
43 | m.Target = io.Target | |
44 | m.Hit = io.Hit | |
45 | if not io.isMouse then | |
46 | local b = io.UserInputState == Enum.UserInputState.Begin | |
47 | if io.UserInputType == Enum.UserInputType.MouseButton1 then | |
48 | return m:TrigEvent(b and "Button1Down" or "Button1Up") | |
49 | end | |
50 | for _,t in pairs(CAS.Actions) do | |
51 | for _,k in pairs(t.Keys) do | |
52 | if k==io.KeyCode then | |
53 | t.Function(t.Name,io.UserInputState,io) | |
54 | end | |
55 | end | |
56 | end | |
57 | m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower()) | |
58 | UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false) | |
59 | end | |
60 | end) | |
61 | Event.Parent = NLS([==[ | |
62 | local Player = game:GetService("Players").LocalPlayer | |
63 | local Event = script:WaitForChild("UserInput_Event") | |
64 | ||
65 | local Mouse = Player:GetMouse() | |
66 | local UIS = game:GetService("UserInputService") | |
67 | local input = function(io,a) | |
68 | if a then return end | |
69 | --Since InputObject is a client-side instance, we create and pass table instead | |
70 | Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target}) | |
71 | end | |
72 | UIS.InputBegan:Connect(input) | |
73 | UIS.InputEnded:Connect(input) | |
74 | ||
75 | local h,t | |
76 | --Give the server mouse data 30 times every second, but only if the values changed | |
77 | --If player is not moving their mouse, client won't fire events | |
78 | while wait(1/30) do | |
79 | if h~=Mouse.Hit or t~=Mouse.Target then | |
80 | h,t=Mouse.Hit,Mouse.Target | |
81 | Event:FireServer({isMouse=true,Target=t,Hit=h}) | |
82 | end | |
83 | end]==],Player.Character) | |
84 | ||
85 | ----Sandboxed game object that allows the usage of client-side methods and services | |
86 | --Real game object | |
87 | local _rg = game | |
88 | ||
89 | --Metatable for fake service | |
90 | local fsmt = { | |
91 | __index = function(self,k) | |
92 | local s = rawget(self,"_RealService") | |
93 | if s then return s[k] end | |
94 | end, | |
95 | __newindex = function(self,k,v) | |
96 | local s = rawget(self,"_RealService") | |
97 | if s then s[k]=v end | |
98 | end, | |
99 | __call = function(self,...) | |
100 | local s = rawget(self,"_RealService") | |
101 | if s then return s(...) end | |
102 | end | |
103 | } | |
104 | local function FakeService(t,RealService) | |
105 | t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService | |
106 | return setmetatable(t,fsmt) | |
107 | end | |
108 | ||
109 | --Fake game object | |
110 | local g = { | |
111 | GetService = function(self,s) | |
112 | return self[s] | |
113 | end, | |
114 | Players = FakeService({ | |
115 | LocalPlayer = FakeService({GetMouse=function(self)return m end},Player) | |
116 | },"Players"), | |
117 | UserInputService = FakeService(UIS,"UserInputService"), | |
118 | ContextActionService = FakeService(CAS,"ContextActionService"), | |
119 | } | |
120 | rawset(g.Players,"localPlayer",g.Players.LocalPlayer) | |
121 | g.service = g.GetService | |
122 | ||
123 | setmetatable(g,{ | |
124 | __index=function(self,s) | |
125 | return _rg:GetService(s) or typeof(_rg[s])=="function" | |
126 | and function(_,...)return _rg[s](_rg,...)end or _rg[s] | |
127 | end, | |
128 | __newindex = fsmt.__newindex, | |
129 | __call = fsmt.__call | |
130 | }) | |
131 | --Changing owner to fake player object to support owner:GetMouse() | |
132 | game,owner = g,g.Players.LocalPlayer | |
133 | end | |
134 | ||
135 | -- Made by NoobyGames12, remaded FM sword with additional gun | |
136 | ||
137 | -- If you have it and if you leak it, ill never give the scripts i made since you leaked one of my scripts, pretending that you made this, its just an FREE MODEL remade thing that i made. Now if you leak it, go ahead, ill never give you scripts ever again. | |
138 | ||
139 | --NoobyGames12 | |
140 | ||
141 | plr = game.Players.LocalPlayer | |
142 | char = plr.Character | |
143 | hum = char.Humanoid | |
144 | t = char.Torso | |
145 | h = char.Head | |
146 | ra = char["Right Arm"] | |
147 | la = char["Left Arm"] | |
148 | rl = char["Right Leg"] | |
149 | ll = char["Left Leg"] | |
150 | tors = char.Torso | |
151 | lleg = char["Left Leg"] | |
152 | root = char.HumanoidRootPart | |
153 | hed = char.Head | |
154 | rleg = char["Right Leg"] | |
155 | rarm = char["Right Arm"] | |
156 | larm = char["Left Arm"] | |
157 | vt = Vector3.new | |
158 | bc = BrickColor.new | |
159 | br = BrickColor.random | |
160 | it = Instance.new | |
161 | cf = CFrame.new | |
162 | ||
163 | function CreatePart(parent,transparency,reflectance,material,brickcolor) | |
164 | local p = Instance.new("Part") | |
165 | p.Parent = parent | |
166 | p.Size = Vector3.new(1,1,1) | |
167 | p.Transparency = transparency | |
168 | p.Reflectance = reflectance | |
169 | p.CanCollide = false | |
170 | p.BrickColor = brickcolor | |
171 | p.Material = material | |
172 | return p | |
173 | end | |
174 | ||
175 | function CreateMesh(parent,meshtype,x1,y1,z1) | |
176 | local mesh = Instance.new("SpecialMesh",parent) | |
177 | mesh.MeshType = meshtype | |
178 | mesh.Scale = Vector3.new(x1,y1,z1) | |
179 | return mesh | |
180 | end | |
181 | ||
182 | function CreateSpecialMesh(parent,meshid,x1,y1,z1) | |
183 | local mesh = Instance.new("SpecialMesh",parent) | |
184 | mesh.MeshType = "SpecialMesh" | |
185 | mesh.MeshId = meshid | |
186 | mesh.Scale = Vector3.new(x1,y1,z1) | |
187 | return mesh | |
188 | end | |
189 | ||
190 | function CreateWeld(parent,part0,part1,C1X,C1Y,C1Z,C1Xa,C1Ya,C1Za,C0X,C0Y,C0Z,C0Xa,C0Ya,C0Za) | |
191 | local weld = Instance.new("Weld") | |
192 | weld.Parent = parent | |
193 | weld.Part0 = part0 | |
194 | weld.Part1 = part1 | |
195 | weld.C1 = CFrame.new(C1X,C1Y,C1Z)*CFrame.Angles(C1Xa,C1Ya,C1Za) | |
196 | weld.C0 = CFrame.new(C0X,C0Y,C0Z)*CFrame.Angles(C0Xa,C0Ya,C0Za) | |
197 | return weld | |
198 | end | |
199 | ---------------- left gaunlet | |
200 | local handle = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black")) | |
201 | CreateMesh(handle,"Brick",1.1,0.4,1.1) | |
202 | CreateWeld(handle,larm,handle,0,0.45,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
203 | local handleout = CreatePart(char,0,0,"Neon",BrickColor.new("Royal purple")) | |
204 | CreateMesh(handleout,"Brick",1.075,0.45,1.075) | |
205 | CreateWeld(handleout,larm,handleout,0,0.45,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
206 | local handleout2 = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black")) | |
207 | CreateMesh(handleout2,"Brick",1.05,0.485,1.05) | |
208 | CreateWeld(handleout2,larm,handleout2,0,0.45,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
209 | ||
210 | local box = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black")) | |
211 | CreateMesh(box,"Brick",1.2,0.5,0.5) | |
212 | CreateWeld(box,handle,box,0.05,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
213 | local boxout = CreatePart(char,0,0,"Neon",BrickColor.new("Bright blue")) | |
214 | CreateMesh(boxout,"Brick",1.185,0.525,0.525) | |
215 | CreateWeld(boxout,handle,boxout,0.05,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
216 | local boxout2 = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black")) | |
217 | CreateMesh(boxout2,"Brick",1.15,0.585,0.585) | |
218 | CreateWeld(boxout2,handle,boxout2,0.05,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
219 | ||
220 | local boxoutrand = CreatePart(char,0,0,"Neon",BrickColor.new("Bright blue")) | |
221 | CreateMesh(boxoutrand,"Brick",1,0.35,0.35) | |
222 | CreateWeld(boxoutrand,handle,boxoutrand,-0.075,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
223 | ||
224 | local glowstrip = CreatePart(char,0,0,"Neon",BrickColor.new("Bright blue")) | |
225 | CreateMesh(glowstrip,"Brick",0.65,0.05,1.15) | |
226 | CreateWeld(glowstrip,larm,glowstrip,0.15,0.365,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
227 | local glowstrip2 = CreatePart(char,0,0,"Neon",BrickColor.new("Bright blue")) | |
228 | CreateMesh(glowstrip2,"Brick",0.65,0.05,1.15) | |
229 | CreateWeld(glowstrip2,larm,glowstrip2,0.15,0.465,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
230 | local glowstrip3 = CreatePart(char,0,0,"Neon",BrickColor.new("Bright blue")) | |
231 | CreateMesh(glowstrip3,"Brick",0.65,0.05,1.15) | |
232 | CreateWeld(glowstrip3,larm,glowstrip3,0.15,0.565,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
233 | ||
234 | local diamond = CreatePart(char,0,0,"Neon",BrickColor.new("Royal purple")) | |
235 | CreateMesh(diamond,"Brick",0.25,0.25,1.15) | |
236 | CreateWeld(diamond,handle,diamond,-0.35,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
237 | ||
238 | --- gun here | |
239 | ||
240 | local handle = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black")) | |
241 | CreateMesh(handle,"Brick",0.75,0.4,0.4) | |
242 | CreateWeld(handle,larm,handle,-0.1,1,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
243 | ||
244 | local barrel = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black")) | |
245 | CreateMesh(barrel,"Brick",0.45,1,0.45) | |
246 | CreateWeld(barrel,handle,barrel,-0.25,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
247 | local barrelglow = CreatePart(char,0,0,"Neon",BrickColor.new("Royal purple")) | |
248 | CreateMesh(barrelglow,"Brick",0.375,0.965,0.375) | |
249 | CreateWeld(barrelglow,handle,barrelglow,-0.25,0.55,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
250 | local barrelup = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black")) | |
251 | CreateMesh(barrelup,"Brick",0.385,0.535,0.4625) | |
252 | CreateWeld(barrelup,barrel,barrelup,-0.065,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
253 | local barrelupglow = CreatePart(char,0,0,"Neon",BrickColor.new("Bright blue")) | |
254 | CreateMesh(barrelupglow,"Brick",0.325,0.585,0.455) | |
255 | CreateWeld(barrelupglow,barrel,barrelupglow,-0.065,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
256 | local barrel2 = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black")) | |
257 | CreateMesh(barrel2,"Brick",0.325,1.5,0.325) | |
258 | CreateWeld(barrel2,handle,barrel2,-0.25,1.25,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
259 | local barrelhole = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Really black")) | |
260 | CreateMesh(barrelhole,"Brick",0.25,0.25,0.25) | |
261 | CreateWeld(barrelhole,barrel2,barrelhole,0,0.65,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0)) | |
262 | --- | |
263 | ||
264 | local gunmode = false | |
265 | ||
266 | Player=game:GetService("Players").LocalPlayer | |
267 | Character=Player.Character | |
268 | PlayerGui=Player.PlayerGui | |
269 | Backpack=Player.Backpack | |
270 | Torso=Character.Torso | |
271 | Head=Character.Head | |
272 | Humanoid=Character.Humanoid | |
273 | m=Instance.new('Model',Character) | |
274 | LeftArm=Character["Left Arm"] | |
275 | LeftLeg=Character["Left Leg"] | |
276 | RightArm=Character["Right Arm"] | |
277 | RightLeg=Character["Right Leg"] | |
278 | LS=Torso["Left Shoulder"] | |
279 | LH=Torso["Left Hip"] | |
280 | RS=Torso["Right Shoulder"] | |
281 | RH=Torso["Right Hip"] | |
282 | Face = Head.face | |
283 | Neck=Torso.Neck | |
284 | it=Instance.new | |
285 | attacktype=1 | |
286 | vt=Vector3.new | |
287 | cf=CFrame.new | |
288 | euler=CFrame.fromEulerAnglesXYZ | |
289 | angles=CFrame.Angles | |
290 | cloaked=false | |
291 | necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) | |
292 | necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) | |
293 | LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0) | |
294 | LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0) | |
295 | RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0) | |
296 | RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0) | |
297 | RootPart=Character.HumanoidRootPart | |
298 | RootJoint=RootPart.RootJoint | |
299 | RootCF=euler(-1.57,0,3.14) | |
300 | attack = false | |
301 | attackdebounce = false | |
302 | deb=false | |
303 | equipped=true | |
304 | hand=false | |
305 | MMouse=nil | |
306 | combo=0 | |
307 | mana=0 | |
308 | trispeed=.2 | |
309 | attackmode='none' | |
310 | local idle=0 | |
311 | local Anim="Idle" | |
312 | local Effects={} | |
313 | local gun=false | |
314 | local shoot=false | |
315 | local sine = 0 | |
316 | local change = 1 | |
317 | player=nil | |
318 | ||
319 | mouse=Player:GetMouse() | |
320 | --save shoulders | |
321 | RSH, LSH=nil, nil | |
322 | --welds | |
323 | RW, LW=Instance.new("Weld"), Instance.new("Weld") | |
324 | RW.Name="Right Shoulder" LW.Name="Left Shoulder" | |
325 | LH=Torso["Left Hip"] | |
326 | RH=Torso["Right Hip"] | |
327 | TorsoColor=Torso.BrickColor | |
328 | function NoOutline(Part) | |
329 | Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10 | |
330 | end | |
331 | player=Player | |
332 | ch=Character | |
333 | RSH=ch.Torso["Right Shoulder"] | |
334 | LSH=ch.Torso["Left Shoulder"] | |
335 | -- | |
336 | RSH.Parent=nil | |
337 | LSH.Parent=nil | |
338 | -- | |
339 | RW.Name="Right Shoulder" | |
340 | RW.Part0=ch.Torso | |
341 | RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5) | |
342 | RW.C1=cf(0, 0.5, 0) | |
343 | RW.Part1=ch["Right Arm"] | |
344 | RW.Parent=ch.Torso | |
345 | -- | |
346 | LW.Name="Left Shoulder" | |
347 | LW.Part0=ch.Torso | |
348 | LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8) | |
349 | LW.C1=cf(0, 0.5, 0) | |
350 | LW.Part1=ch["Left Arm"] | |
351 | LW.Parent=ch.Torso | |
352 | ||
353 | local Stats=Instance.new("BoolValue") | |
354 | Stats.Name="Stats" | |
355 | Stats.Parent=Character | |
356 | local Atk=Instance.new("NumberValue") | |
357 | Atk.Name="Damage" | |
358 | Atk.Parent=Stats | |
359 | Atk.Value=1 | |
360 | local Def=Instance.new("NumberValue") | |
361 | Def.Name="Defense" | |
362 | Def.Parent=Stats | |
363 | Def.Value=1 | |
364 | local Speed=Instance.new("NumberValue") | |
365 | Speed.Name="Speed" | |
366 | Speed.Parent=Stats | |
367 | Speed.Value=1 | |
368 | local Mvmt=Instance.new("NumberValue") | |
369 | Mvmt.Name="Movement" | |
370 | Mvmt.Parent=Stats | |
371 | Mvmt.Value=1 | |
372 | ||
373 | local donum=0 | |
374 | ||
375 | ||
376 | function part(formfactor,parent,reflectance,transparency,brickcolor,name,size) | |
377 | local fp=it("Part") | |
378 | fp.formFactor=formfactor | |
379 | fp.Parent=parent | |
380 | fp.Reflectance=reflectance | |
381 | fp.Transparency=transparency | |
382 | fp.CanCollide=false | |
383 | fp.Locked=true | |
384 | fp.BrickColor=brickcolor | |
385 | fp.Name=name | |
386 | fp.Size=size | |
387 | fp.Position=Torso.Position | |
388 | NoOutline(fp) | |
389 | fp.Material="SmoothPlastic" | |
390 | fp:BreakJoints() | |
391 | return fp | |
392 | end | |
393 | ||
394 | function mesh(Mesh,part,meshtype,meshid,offset,scale) | |
395 | local mesh=it(Mesh) | |
396 | mesh.Parent=part | |
397 | if Mesh=="SpecialMesh" then | |
398 | mesh.MeshType=meshtype | |
399 | if meshid~="nil" then | |
400 | mesh.MeshId="http://www.roblox.com/asset/?id="..meshid | |
401 | end | |
402 | end | |
403 | mesh.Offset=offset | |
404 | mesh.Scale=scale | |
405 | return mesh | |
406 | end | |
407 | ||
408 | function weld(parent,part0,part1,c0) | |
409 | local weld=it("Weld") | |
410 | weld.Parent=parent | |
411 | weld.Part0=part0 | |
412 | weld.Part1=part1 | |
413 | weld.C0=c0 | |
414 | return weld | |
415 | end | |
416 | ||
417 | local Color1=Torso.BrickColor | |
418 | ||
419 | local bodvel=Instance.new("BodyVelocity") | |
420 | local bg=Instance.new("BodyGyro") | |
421 | ||
422 | function swait(num) | |
423 | if num==0 or num==nil then | |
424 | game:service'RunService'.Stepped:wait(0) | |
425 | else | |
426 | for i=0,num do | |
427 | game:service'RunService'.Stepped:wait(0) | |
428 | end | |
429 | end | |
430 | end | |
431 | ||
432 | ||
433 | so = function(id,par,vol,pit) | |
434 | coroutine.resume(coroutine.create(function() | |
435 | local sou = Instance.new("Sound",par or workspace) | |
436 | sou.Volume=vol | |
437 | sou.Pitch=pit or 1 | |
438 | sou.SoundId=id | |
439 | swait() | |
440 | sou:play() | |
441 | game:GetService("Debris"):AddItem(sou,6) | |
442 | end)) | |
443 | end | |
444 | ||
445 | function clerp(a,b,t) | |
446 | local qa = {QuaternionFromCFrame(a)} | |
447 | local qb = {QuaternionFromCFrame(b)} | |
448 | local ax, ay, az = a.x, a.y, a.z | |
449 | local bx, by, bz = b.x, b.y, b.z | |
450 | local _t = 1-t | |
451 | return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t)) | |
452 | end | |
453 | ||
454 | function QuaternionFromCFrame(cf) | |
455 | local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() | |
456 | local trace = m00 + m11 + m22 | |
457 | if trace > 0 then | |
458 | local s = math.sqrt(1 + trace) | |
459 | local recip = 0.5/s | |
460 | return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5 | |
461 | else | |
462 | local i = 0 | |
463 | if m11 > m00 then | |
464 | i = 1 | |
465 | end | |
466 | if m22 > (i == 0 and m00 or m11) then | |
467 | i = 2 | |
468 | end | |
469 | if i == 0 then | |
470 | local s = math.sqrt(m00-m11-m22+1) | |
471 | local recip = 0.5/s | |
472 | return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip | |
473 | elseif i == 1 then | |
474 | local s = math.sqrt(m11-m22-m00+1) | |
475 | local recip = 0.5/s | |
476 | return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip | |
477 | elseif i == 2 then | |
478 | local s = math.sqrt(m22-m00-m11+1) | |
479 | local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip | |
480 | end | |
481 | end | |
482 | end | |
483 | ||
484 | function QuaternionToCFrame(px, py, pz, x, y, z, w) | |
485 | local xs, ys, zs = x + x, y + y, z + z | |
486 | local wx, wy, wz = w*xs, w*ys, w*zs | |
487 | local xx = x*xs | |
488 | local xy = x*ys | |
489 | local xz = x*zs | |
490 | local yy = y*ys | |
491 | local yz = y*zs | |
492 | local zz = z*zs | |
493 | return CFrame.new(px, py, pz,1-(yy+zz), xy - wz, xz + wy,xy + wz, 1-(xx+zz), yz - wx, xz - wy, yz + wx, 1-(xx+yy)) | |
494 | end | |
495 | ||
496 | function QuaternionSlerp(a, b, t) | |
497 | local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4] | |
498 | local startInterp, finishInterp; | |
499 | if cosTheta >= 0.0001 then | |
500 | if (1 - cosTheta) > 0.0001 then | |
501 | local theta = math.acos(cosTheta) | |
502 | local invSinTheta = 1/math.sin(theta) | |
503 | startInterp = math.sin((1-t)*theta)*invSinTheta | |
504 | finishInterp = math.sin(t*theta)*invSinTheta | |
505 | else | |
506 | startInterp = 1-t | |
507 | finishInterp = t | |
508 | end | |
509 | else | |
510 | if (1+cosTheta) > 0.0001 then | |
511 | local theta = math.acos(-cosTheta) | |
512 | local invSinTheta = 1/math.sin(theta) | |
513 | startInterp = math.sin((t-1)*theta)*invSinTheta | |
514 | finishInterp = math.sin(t*theta)*invSinTheta | |
515 | else | |
516 | startInterp = t-1 | |
517 | finishInterp = t | |
518 | end | |
519 | end | |
520 | return a[1]*startInterp + b[1]*finishInterp, a[2]*startInterp + b[2]*finishInterp, a[3]*startInterp + b[3]*finishInterp, a[4]*startInterp + b[4]*finishInterp | |
521 | end | |
522 | ||
523 | local function CFrameFromTopBack(at, top, back) | |
524 | local right = top:Cross(back) | |
525 | return CFrame.new(at.x, at.y, at.z, | |
526 | right.x, top.x, back.x, | |
527 | right.y, top.y, back.y, | |
528 | right.z, top.z, back.z) | |
529 | end | |
530 | ||
531 | function Triangle(a, b, c) | |
532 | local edg1 = (c-a):Dot((b-a).unit) | |
533 | local edg2 = (a-b):Dot((c-b).unit) | |
534 | local edg3 = (b-c):Dot((a-c).unit) | |
535 | if edg1 <= (b-a).magnitude and edg1 >= 0 then | |
536 | a, b, c = a, b, c | |
537 | elseif edg2 <= (c-b).magnitude and edg2 >= 0 then | |
538 | a, b, c = b, c, a | |
539 | elseif edg3 <= (a-c).magnitude and edg3 >= 0 then | |
540 | a, b, c = c, a, b | |
541 | else | |
542 | assert(false, "unreachable") | |
543 | end | |
544 | ||
545 | local len1 = (c-a):Dot((b-a).unit) | |
546 | local len2 = (b-a).magnitude - len1 | |
547 | local width = (a + (b-a).unit*len1 - c).magnitude | |
548 | ||
549 | local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit) | |
550 | ||
551 | local list = {} | |
552 | ||
553 | if len1 > 0.01 then | |
554 | local w1 = Instance.new('WedgePart', m) | |
555 | game:GetService("Debris"):AddItem(w1,5) | |
556 | w1.Material = "SmoothPlastic" | |
557 | w1.FormFactor = 'Custom' | |
558 | w1.BrickColor = BrickColor.new("Really red") | |
559 | w1.Transparency = 0 | |
560 | w1.Reflectance = 0 | |
561 | w1.Material = "SmoothPlastic" | |
562 | w1.CanCollide = false | |
563 | local l1 = Instance.new("PointLight",w1) | |
564 | l1.Color = Color3.new(170,0,0) | |
565 | NoOutline(w1) | |
566 | local sz = Vector3.new(0.2, width, len1) | |
567 | w1.Size = sz | |
568 | local sp = Instance.new("SpecialMesh",w1) | |
569 | sp.MeshType = "Wedge" | |
570 | sp.Scale = Vector3.new(0,1,1) * sz/w1.Size | |
571 | w1:BreakJoints() | |
572 | w1.Anchored = true | |
573 | w1.Parent = workspace | |
574 | w1.Transparency = 0.7 | |
575 | table.insert(Effects,{w1,"Disappear",.01}) | |
576 | w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2) | |
577 | table.insert(list,w1) | |
578 | end | |
579 | ||
580 | if len2 > 0.01 then | |
581 | local w2 = Instance.new('WedgePart', m) | |
582 | game:GetService("Debris"):AddItem(w2,5) | |
583 | w2.Material = "SmoothPlastic" | |
584 | w2.FormFactor = 'Custom' | |
585 | w2.BrickColor = BrickColor.new("Really red") | |
586 | w2.Transparency = 0 | |
587 | w2.Reflectance = 0 | |
588 | w2.Material = "SmoothPlastic" | |
589 | w2.CanCollide = false | |
590 | local l2 = Instance.new("PointLight",w2) | |
591 | l2.Color = Color3.new(170,0,0) | |
592 | NoOutline(w2) | |
593 | local sz = Vector3.new(0.2, width, len2) | |
594 | w2.Size = sz | |
595 | local sp = Instance.new("SpecialMesh",w2) | |
596 | sp.MeshType = "Wedge" | |
597 | sp.Scale = Vector3.new(0,1,1) * sz/w2.Size | |
598 | w2:BreakJoints() | |
599 | w2.Anchored = true | |
600 | w2.Parent = workspace | |
601 | w2.Transparency = 0.7 | |
602 | table.insert(Effects,{w2,"Disappear",.01}) | |
603 | w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2) | |
604 | table.insert(list,w2) | |
605 | end | |
606 | return unpack(list) | |
607 | end | |
608 | ||
609 | ||
610 | Damagefunc=function(hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock) | |
611 | if hit.Parent==nil then | |
612 | return | |
613 | end | |
614 | h=hit.Parent:FindFirstChild("Humanoid") | |
615 | for _,v in pairs(hit.Parent:children()) do | |
616 | if v:IsA("Humanoid") then | |
617 | h=v | |
618 | end | |
619 | end | |
620 | if hit.Parent.Parent:FindFirstChild("Torso")~=nil then | |
621 | h=hit.Parent.Parent:FindFirstChild("Humanoid") | |
622 | end | |
623 | if hit.Parent.className=="Hat" then | |
624 | hit=hit.Parent.Parent:findFirstChild("Head") | |
625 | end | |
626 | if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then | |
627 | if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end | |
628 | --[[ if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then | |
629 | return | |
630 | end]] | |
631 | -- hs(hit,1.2) | |
632 | c=Instance.new("ObjectValue") | |
633 | c.Name="creator" | |
634 | c.Value=game:service("Players").LocalPlayer | |
635 | c.Parent=h | |
636 | game:GetService("Debris"):AddItem(c,.5) | |
637 | Damage=math.random(minim,maxim) | |
638 | -- h:TakeDamage(Damage) | |
639 | blocked=false | |
640 | block=hit.Parent:findFirstChild("Block") | |
641 | if block~=nil then | |
642 | print(block.className) | |
643 | if block.className=="NumberValue" then | |
644 | if block.Value>0 then | |
645 | blocked=true | |
646 | if decreaseblock==nil then | |
647 | block.Value=block.Value-1 | |
648 | end | |
649 | end | |
650 | end | |
651 | if block.className=="IntValue" then | |
652 | if block.Value>0 then | |
653 | blocked=true | |
654 | if decreaseblock~=nil then | |
655 | block.Value=block.Value-1 | |
656 | end | |
657 | end | |
658 | end | |
659 | end | |
660 | if blocked==false then | |
661 | -- h:TakeDamage(Damage) | |
662 | h.Health=h.Health-Damage | |
663 | showDamage(hit.Parent,Damage,.5,BrickColor.new("Really red")) | |
664 | else | |
665 | h.Health=h.Health-(Damage/2) | |
666 | showDamage(hit.Parent,Damage/2,.5,BrickColor.new("Bright blue")) | |
667 | end | |
668 | if Type=="Knockdown" then | |
669 | hum=hit.Parent.Humanoid | |
670 | hum.PlatformStand=true | |
671 | coroutine.resume(coroutine.create(function(HHumanoid) | |
672 | swait(1) | |
673 | HHumanoid.PlatformStand=false | |
674 | end),hum) | |
675 | local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit | |
676 | --hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0) | |
677 | local bodvol=Instance.new("BodyVelocity") | |
678 | bodvol.velocity=angle*knockback | |
679 | bodvol.P=5000 | |
680 | bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003) | |
681 | bodvol.Parent=hit | |
682 | rl=Instance.new("BodyAngularVelocity") | |
683 | rl.P=3000 | |
684 | rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000 | |
685 | rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10)) | |
686 | rl.Parent=hit | |
687 | game:GetService("Debris"):AddItem(bodvol,.5) | |
688 | game:GetService("Debris"):AddItem(rl,.5) | |
689 | elseif Type=="Normal" then | |
690 | vp=Instance.new("BodyVelocity") | |
691 | vp.P=500 | |
692 | vp.maxForce=Vector3.new(math.huge,0,math.huge) | |
693 | -- vp.velocity=Character.Torso.CFrame.lookVector*Knockback | |
694 | if KnockbackType==1 then | |
695 | vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05 | |
696 | elseif KnockbackType==2 then | |
697 | vp.velocity=Property.CFrame.lookVector*knockback | |
698 | end | |
699 | if knockback>0 then | |
700 | vp.Parent=hit.Parent.Torso | |
701 | end | |
702 | game:GetService("Debris"):AddItem(vp,.5) | |
703 | elseif Type=="Up" then | |
704 | local bodyVelocity=Instance.new("BodyVelocity") | |
705 | bodyVelocity.velocity=vt(0,60,0) | |
706 | bodyVelocity.P=5000 | |
707 | bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003) | |
708 | bodyVelocity.Parent=hit | |
709 | game:GetService("Debris"):AddItem(bodyVelocity,1) | |
710 | rl=Instance.new("BodyAngularVelocity") | |
711 | rl.P=3000 | |
712 | rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000 | |
713 | rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30)) | |
714 | rl.Parent=hit | |
715 | game:GetService("Debris"):AddItem(rl,.5) | |
716 | elseif Type=="Snare" then | |
717 | bp=Instance.new("BodyPosition") | |
718 | bp.P=2000 | |
719 | bp.D=100 | |
720 | bp.maxForce=Vector3.new(math.huge,math.huge,math.huge) | |
721 | bp.position=hit.Parent.Torso.Position | |
722 | bp.Parent=hit.Parent.Torso | |
723 | game:GetService("Debris"):AddItem(bp,1) | |
724 | elseif Type=="Target" then | |
725 | if Targetting==false then | |
726 | ZTarget=hit.Parent.Torso | |
727 | coroutine.resume(coroutine.create(function(Part) | |
728 | so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) | |
729 | swait(5) | |
730 | so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) | |
731 | end),ZTarget) | |
732 | TargHum=ZTarget.Parent:findFirstChild("Humanoid") | |
733 | targetgui=Instance.new("BillboardGui") | |
734 | targetgui.Parent=ZTarget | |
735 | targetgui.Size=UDim2.new(10,100,10,100) | |
736 | targ=Instance.new("ImageLabel") | |
737 | targ.Parent=targetgui | |
738 | targ.BackgroundTransparency=1 | |
739 | targ.Image="rbxassetid://4834067" | |
740 | targ.Size=UDim2.new(1,0,1,0) | |
741 | cam.CameraType="Scriptable" | |
742 | cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position) | |
743 | dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z) | |
744 | workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position) | |
745 | Targetting=true | |
746 | RocketTarget=ZTarget | |
747 | for i=1,Property do | |
748 | --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do | |
749 | if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then | |
750 | swait() | |
751 | end | |
752 | --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100) | |
753 | cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position) | |
754 | dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z) | |
755 | cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0) | |
756 | end | |
757 | Targetting=false | |
758 | RocketTarget=nil | |
759 | targetgui.Parent=nil | |
760 | cam.CameraType="Custom" | |
761 | end | |
762 | end | |
763 | debounce=Instance.new("BoolValue") | |
764 | debounce.Name="DebounceHit" | |
765 | debounce.Parent=hit.Parent | |
766 | debounce.Value=true | |
767 | game:GetService("Debris"):AddItem(debounce,Delay) | |
768 | c=Instance.new("ObjectValue") | |
769 | c.Name="creator" | |
770 | c.Value=Player | |
771 | c.Parent=h | |
772 | game:GetService("Debris"):AddItem(c,.5) | |
773 | CRIT=false | |
774 | hitDeb=true | |
775 | AttackPos=6 | |
776 | end | |
777 | end | |
778 | ||
779 | showDamage=function(Char,Dealt,du,Color) | |
780 | m=Instance.new("Model") | |
781 | m.Name=tostring(Dealt) | |
782 | h=Instance.new("Humanoid") | |
783 | h.Health=0 | |
784 | h.MaxHealth=0 | |
785 | h.Parent=m | |
786 | c=Instance.new("Part") | |
787 | c.Transparency=0 | |
788 | c.BrickColor=Color | |
789 | c.Name="Head" | |
790 | c.TopSurface=0 | |
791 | c.BottomSurface=0 | |
792 | c.formFactor="Plate" | |
793 | c.Size=Vector3.new(1,.4,1) | |
794 | ms=Instance.new("CylinderMesh") | |
795 | ms.Scale=Vector3.new(.8,.8,.8) | |
796 | local hitsounds={"199149137","199149186","199149221","199149235","199149269","199149297"} | |
797 | local dam = Instance.new("Sound",c) | |
798 | local rndm=math.random(1,#hitsounds) | |
799 | local r=rndm | |
800 | dam.SoundId = "http://www.roblox.com/asset/?id="..hitsounds[r] | |
801 | dam.Volume = 1.25 | |
802 | dam.Pitch = 1 | |
803 | dam:Play() | |
804 | if CRIT==true then | |
805 | ms.Scale=Vector3.new(1,1.25,1) | |
806 | end | |
807 | ms.Parent=c | |
808 | c.Reflectance=0 | |
809 | Instance.new("BodyGyro").Parent=c | |
810 | c.Parent=m | |
811 | if Char:findFirstChild("Head")~=nil then | |
812 | c.CFrame=CFrame.new(Char["Head"].CFrame.p+Vector3.new(0,1.5,0)) | |
813 | elseif Char.Parent:findFirstChild("Head")~=nil then | |
814 | c.CFrame=CFrame.new(Char.Parent["Head"].CFrame.p+Vector3.new(0,1.5,0)) | |
815 | end | |
816 | f=Instance.new("BodyPosition") | |
817 | f.P=2000 | |
818 | f.D=100 | |
819 | f.maxForce=Vector3.new(math.huge,math.huge,math.huge) | |
820 | f.position=c.Position+Vector3.new(0,3,0) | |
821 | f.Parent=c | |
822 | game:GetService("Debris"):AddItem(m,.5+du) | |
823 | c.CanCollide=false | |
824 | m.Parent=workspace | |
825 | c.CanCollide=false | |
826 | end | |
827 | ||
828 | function rayCast(Pos, Dir, Max, Ignore) -- Origin Position , Direction, MaxDistance , IgnoreDescendants | |
829 | return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore) | |
830 | end | |
831 | ||
832 | function SkullEffect(brickcolor,cframe,x1,y1,z1,delay) | |
833 | local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5)) | |
834 | prt.Anchored=true | |
835 | prt.CFrame=cframe | |
836 | local msh=mesh("SpecialMesh",prt,"FileMesh","http://www.roblox.com/asset/?id=4770583",vt(0,0,0),vt(x1,y1,z1)) | |
837 | --http://www.roblox.com/asset/?id=4770560 | |
838 | game:GetService("Debris"):AddItem(prt,2) | |
839 | CF=prt.CFrame | |
840 | coroutine.resume(coroutine.create(function(Part,Mesh,TehCF) | |
841 | for i=0,1,0.2 do | |
842 | wait() | |
843 | Part.CFrame=CF*cf(0,0,-0.4) | |
844 | end | |
845 | for i=0,1,delay do | |
846 | wait() | |
847 | --Part.CFrame=CF*cf((math.random(-1,0)+math.random())/5,(math.random(-1,0)+math.random())/5,(math.random(-1,0)+math.random())/5) | |
848 | Mesh.Scale=Mesh.Scale | |
849 | end | |
850 | for i=0,1,0.1 do | |
851 | wait() | |
852 | Part.Transparency=i | |
853 | end | |
854 | Part.Parent=nil | |
855 | end),prt,msh,CF) | |
856 | end | |
857 | ||
858 | function MagicBlock(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay) | |
859 | local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5)) | |
860 | prt.Anchored=true | |
861 | prt.CFrame=cframe | |
862 | msh=mesh("BlockMesh",prt,"","",vt(0,0,0),vt(x1,y1,z1)) | |
863 | game:GetService("Debris"):AddItem(prt,5) | |
864 | coroutine.resume(coroutine.create(function(Part,Mesh) | |
865 | for i=0,1,delay do | |
866 | wait() | |
867 | Part.CFrame=Part.CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50)) | |
868 | Part.Transparency=i | |
869 | Mesh.Scale=Mesh.Scale+vt(x3,y3,z3) | |
870 | end | |
871 | Part.Parent=nil | |
872 | end),prt,msh) | |
873 | end | |
874 | ||
875 | function MagicBlock2(brickcolor,cframe,Parent,x1,y1,z1,x3,y3,z3,delay) | |
876 | local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5)) | |
877 | prt.Anchored=false | |
878 | prt.CFrame=cframe | |
879 | msh=mesh("BlockMesh",prt,"","",vt(0,0,0),vt(x1,y1,z1)) | |
880 | local wld=weld(prt,prt,Parent,cframe) | |
881 | game:GetService("Debris"):AddItem(prt,5) | |
882 | coroutine.resume(coroutine.create(function(Part,Mesh,Weld) | |
883 | for i=0,1,delay do | |
884 | wait() | |
885 | Weld.C0=euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))*cframe | |
886 | --Part.CFrame=Part.CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50)) | |
887 | Part.Transparency=i | |
888 | Mesh.Scale=Mesh.Scale+vt(x3,y3,z3) | |
889 | end | |
890 | Part.Parent=nil | |
891 | end),prt,msh,wld) | |
892 | end | |
893 | ||
894 | function MagicBlock3(brickcolor,cframe,Parent,x1,y1,z1,x3,y3,z3,delay) | |
895 | local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5)) | |
896 | prt.Anchored=false | |
897 | prt.CFrame=cframe | |
898 | msh=mesh("BlockMesh",prt,"","",vt(0,0,0),vt(x1,y1,z1)) | |
899 | local wld=weld(prt,prt,Parent,euler(0,0,0)*cf(0,0,0)) | |
900 | game:GetService("Debris"):AddItem(prt,5) | |
901 | coroutine.resume(coroutine.create(function(Part,Mesh,Weld) | |
902 | for i=0,1,delay do | |
903 | wait() | |
904 | Weld.C0=euler(i*20,0,0) | |
905 | --Part.CFrame=Part.CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50)) | |
906 | Part.Transparency=i | |
907 | Mesh.Scale=Mesh.Scale+vt(x3,y3,z3) | |
908 | end | |
909 | Part.Parent=nil | |
910 | end),prt,msh,wld) | |
911 | end | |
912 | ||
913 | function MagicCircle2(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay) | |
914 | local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5)) | |
915 | prt.Anchored=true | |
916 | prt.CFrame=cframe | |
917 | local msh=mesh("CylinderMesh",prt,"","",vt(0,0,0),vt(x1,y1,z1)) | |
918 | game:GetService("Debris"):AddItem(prt,2) | |
919 | coroutine.resume(coroutine.create(function(Part,Mesh) | |
920 | for i=0,1,delay do | |
921 | wait() | |
922 | Part.CFrame=Part.CFrame | |
923 | Mesh.Scale=Mesh.Scale+vt(x3,y3,z3) | |
924 | local prt2=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5)) | |
925 | prt2.Anchored=true | |
926 | prt2.CFrame=cframe*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50)) | |
927 | local msh2=mesh("SpecialMesh",prt2,"Sphere","",vt(0,0,0),vt(0.5,0.5,0.5)) | |
928 | game:GetService("Debris"):AddItem(prt2,2) | |
929 | coroutine.resume(coroutine.create(function(Part,Mesh) | |
930 | for i=0,1,0.1 do | |
931 | wait() | |
932 | Part.CFrame=Part.CFrame*cf(0,0.5,0) | |
933 | end | |
934 | Part.Parent=nil | |
935 | end),prt2,msh2) | |
936 | end | |
937 | for i=0,1,delay*2 do | |
938 | wait() | |
939 | Part.CFrame=Part.CFrame | |
940 | Mesh.Scale=vt((x1+x3)-(x1+x3)*i,(y1+y3)-(y1+y3)*i,(z1+z3)-(z1+z3)*i) | |
941 | end | |
942 | Part.Parent=nil | |
943 | end),prt,msh) | |
944 | end | |
945 | ||
946 | function MagicCircle(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay) | |
947 | local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5)) | |
948 | prt.Anchored=true | |
949 | prt.CFrame=cframe | |
950 | local msh=mesh("SpecialMesh",prt,"Sphere","",vt(0,0,0),vt(x1,y1,z1)) | |
951 | game:GetService("Debris"):AddItem(prt,2) | |
952 | coroutine.resume(coroutine.create(function(Part,Mesh) | |
953 | for i=0,1,delay do | |
954 | wait() | |
955 | Part.CFrame=Part.CFrame | |
956 | Part.Transparency=i | |
957 | Mesh.Scale=Mesh.Scale+vt(x3,y3,z3) | |
958 | end | |
959 | Part.Parent=nil | |
960 | end),prt,msh) | |
961 | end | |
962 | ||
963 | function MagicRing(brickcolor,cframe,x1,y1,z1,x2,y2,z2,x3,y3,z3) | |
964 | local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5)) | |
965 | prt.Anchored=true | |
966 | prt.CFrame=cframe*euler(x2,y2,z2) | |
967 | --"http://www.roblox.com/asset/?id=168892465" | |
968 | local msh=mesh("SpecialMesh",prt,"FileMesh","http://www.roblox.com/asset/?id=3270017",vt(0,0,0),vt(x1,y1,z1)) | |
969 | game:GetService("Debris"):AddItem(prt,2) | |
970 | coroutine.resume(coroutine.create(function(Part,Mesh) | |
971 | for i=0,1,0.03 do | |
972 | wait() | |
973 | Part.CFrame=Part.CFrame | |
974 | Part.Transparency=i | |
975 | Mesh.Scale=Mesh.Scale+vt(x3,y3,z3) | |
976 | end | |
977 | Part.Parent=nil | |
978 | end),prt,msh) | |
979 | end | |
980 | ||
981 | function BreakEffect(brickcolor,cframe,x1,y1,z1) | |
982 | local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5)) | |
983 | prt.Anchored=true | |
984 | prt.CFrame=cframe*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50)) | |
985 | local msh=mesh("SpecialMesh",prt,"Sphere","",vt(0,0,0),vt(x1,y1,z1)) | |
986 | game:GetService("Debris"):AddItem(prt,2) | |
987 | coroutine.resume(coroutine.create(function(Part,CF,Numbb,randnumb) | |
988 | CF=Part.CFrame | |
989 | Numbb=0 | |
990 | randnumb=math.random()/10 | |
991 | rand1=math.random()/10 | |
992 | for i=0,1,rand1 do | |
993 | wait() | |
994 | CF=CF*cf(0,math.random()/2,0) | |
995 | --Part.CFrame=Part.CFrame*euler(0.5,0,0)*cf(0,1,0) | |
996 | Part.CFrame=CF*euler(Numbb,0,0) | |
997 | Part.Transparency=i | |
998 | Numbb=Numbb+randnumb | |
999 | end | |
1000 | Part.Parent=nil | |
1001 | end),prt,CF,Numbb,randnumb) | |
1002 | end | |
1003 | ||
1004 | function MagicWaveThing(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay) | |
1005 | local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5)) | |
1006 | prt.Anchored=true | |
1007 | prt.CFrame=cframe | |
1008 | msh=mesh("SpecialMesh",prt,"FileMesh","http://www.roblox.com/asset/?id=1051557",vt(0,0,0),vt(x1,y1,z1)) | |
1009 | game:GetService("Debris"):AddItem(prt,5) | |
1010 | coroutine.resume(coroutine.create(function(Part,Mesh) | |
1011 | for i=0,1,delay do | |
1012 | wait() | |
1013 | Part.CFrame=Part.CFrame*euler(0,0.7,0) | |
1014 | Part.Transparency=i | |
1015 | Mesh.Scale=Mesh.Scale+vt(x3,y3,z3) | |
1016 | end | |
1017 | Part.Parent=nil | |
1018 | end),prt,msh) | |
1019 | end | |
1020 | ||
1021 | function WaveEffect(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay) | |
1022 | local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5)) | |
1023 | prt.Anchored=true | |
1024 | prt.CFrame=cframe | |
1025 | msh=mesh("SpecialMesh",prt,"FileMesh","http://www.roblox.com/asset/?id=20329976",vt(0,0,0),vt(x1,y1,z1)) | |
1026 | game:GetService("Debris"):AddItem(prt,2) | |
1027 | coroutine.resume(coroutine.create(function(Part,Mesh) | |
1028 | for i=0,1,delay do | |
1029 | wait() | |
1030 | Part.CFrame=Part.CFrame*cf(0,y3/2,0) | |
1031 | Part.Transparency=i | |
1032 | Mesh.Scale=Mesh.Scale+vt(x3,y3,z3) | |
1033 | end | |
1034 | Part.Parent=nil | |
1035 | end),prt,msh) | |
1036 | end | |
1037 | ||
1038 | function StravEffect(brickcolor,cframe,x,y,z,x1,y1,z1,delay) | |
1039 | local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5)) | |
1040 | prt.Anchored=true | |
1041 | prt.CFrame=cframe*cf(x,y,z) | |
1042 | msh=mesh("SpecialMesh",prt,"FileMesh","rbxassetid://168892363",vt(0,0,0),vt(x1,y1,z1)) | |
1043 | game:GetService("Debris"):AddItem(prt,5) | |
1044 | coroutine.resume(coroutine.create(function(Part,Mesh,ex,why,zee) | |
1045 | local num=math.random() | |
1046 | local num2=math.random(-3,2)+math.random() | |
1047 | local numm=0 | |
1048 | for i=0,1,delay*2 do | |
1049 | swait() | |
1050 | Part.CFrame=cframe*euler(0,numm*num*10,0)*cf(ex,why,zee)*cf(-i*10,num2,0) | |
1051 | Part.Transparency=i | |
1052 | numm=numm+0.01 | |
1053 | end | |
1054 | Part.Parent=nil | |
1055 | Mesh.Parent=nil | |
1056 | end),prt,msh,x,y,z) | |
1057 | end | |
1058 | ||
1059 | function dmgstart(dmg,what) | |
1060 | hitcon = what.Touched:connect(function(hit) | |
1061 | local hum = hit.Parent:FindFirstChild("Humanoid") | |
1062 | if hum and not hum:IsDescendantOf(Character) then | |
1063 | hum:TakeDamage(dmg) | |
1064 | end | |
1065 | end) | |
1066 | end | |
1067 | ||
1068 | function dmgstop() | |
1069 | hitcon:disconnect() | |
1070 | end | |
1071 | ||
1072 | function Cloak() | |
1073 | Face.Parent=nil | |
1074 | cloaked=true | |
1075 | for _,v in pairs(Torso.Parent:children()) do | |
1076 | if v.className=="Part" and v.Name~="HumanoidRootPart" then | |
1077 | coroutine.resume(coroutine.create(function() | |
1078 | for i=0,1,0.2 do | |
1079 | wait() | |
1080 | v.Transparency=i | |
1081 | end | |
1082 | v.Transparency=1 | |
1083 | end)) | |
1084 | end | |
1085 | if v.className=="Hat" then | |
1086 | hatp=v.Handle | |
1087 | coroutine.resume(coroutine.create(function(derp) | |
1088 | for i=0,1,0.2 do | |
1089 | wait() | |
1090 | derp.Transparency=i | |
1091 | end | |
1092 | derp.Transparency=1 | |
1093 | end),hatp) | |
1094 | end | |
1095 | end | |
1096 | for _,v in pairs(m:children()) do | |
1097 | if v.className=="Part" then | |
1098 | coroutine.resume(coroutine.create(function() | |
1099 | for i=0,1,0.2 do | |
1100 | wait() | |
1101 | v.Transparency=i | |
1102 | end | |
1103 | v.Transparency=1 | |
1104 | end)) | |
1105 | end | |
1106 | end | |
1107 | end | |
1108 | ||
1109 | function UnCloak() | |
1110 | so("http://roblox.com/asset/?id=2767090",Torso,1,1.1) | |
1111 | Face.Parent=Head | |
1112 | cloaked=false | |
1113 | for _,v in pairs(Torso.Parent:children()) do | |
1114 | if v.className=="Part" and v.Name~="HumanoidRootPart" then | |
1115 | coroutine.resume(coroutine.create(function() | |
1116 | for i=0,1,0.1 do | |
1117 | wait() | |
1118 | v.Transparency=v.Transparency-0.1 | |
1119 | end | |
1120 | v.Transparency=0 | |
1121 | end)) | |
1122 | end | |
1123 | if v.className=="Hat" then | |
1124 | hatp=v.Handle | |
1125 | coroutine.resume(coroutine.create(function(derp) | |
1126 | for i=0,1,0.1 do | |
1127 | wait() | |
1128 | derp.Transparency=derp.Transparency-0.1 | |
1129 | end | |
1130 | derp.Transparency=0 | |
1131 | end),hatp) | |
1132 | end | |
1133 | end | |
1134 | for _,v in pairs(m:children()) do | |
1135 | if v.className=="Part" and v.Name~="hitbox" and v.Name~='tip' then | |
1136 | coroutine.resume(coroutine.create(function() | |
1137 | for i=0,1,0.1 do | |
1138 | wait() | |
1139 | v.Transparency=v.Transparency-0.1 | |
1140 | end | |
1141 | v.Transparency=0 | |
1142 | end)) | |
1143 | v.Transparency=0 | |
1144 | end | |
1145 | end | |
1146 | end | |
1147 | ||
1148 | Player=game:GetService('Players').LocalPlayer | |
1149 | Character=Player.Character | |
1150 | Mouse=Player:GetMouse() | |
1151 | m=Instance.new('Model',Character) | |
1152 | ||
1153 | ||
1154 | local function weldBetween(a, b) | |
1155 | local weldd = Instance.new("ManualWeld") | |
1156 | weldd.Part0 = a | |
1157 | weldd.Part1 = b | |
1158 | weldd.C0 = CFrame.new() | |
1159 | weldd.C1 = b.CFrame:inverse() * a.CFrame | |
1160 | weldd.Parent = a | |
1161 | return weldd | |
1162 | end | |
1163 | ||
1164 | it=Instance.new | |
1165 | ||
1166 | function nooutline(part) | |
1167 | part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10 | |
1168 | end | |
1169 | ||
1170 | function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size) | |
1171 | local fp=it("Part") | |
1172 | fp.formFactor=formfactor | |
1173 | fp.Parent=parent | |
1174 | fp.Reflectance=reflectance | |
1175 | fp.Transparency=transparency | |
1176 | fp.CanCollide=false | |
1177 | fp.Locked=true | |
1178 | fp.BrickColor=BrickColor.new(tostring(brickcolor)) | |
1179 | fp.Name=name | |
1180 | fp.Size=size | |
1181 | fp.Position=Character.Torso.Position | |
1182 | nooutline(fp) | |
1183 | fp.Material=material | |
1184 | fp:BreakJoints() | |
1185 | return fp | |
1186 | end | |
1187 | ||
1188 | function mesh(Mesh,part,meshtype,meshid,offset,scale) | |
1189 | local mesh=it(Mesh) | |
1190 | mesh.Parent=part | |
1191 | if Mesh=="SpecialMesh" then | |
1192 | mesh.MeshType=meshtype | |
1193 | mesh.MeshId=meshid | |
1194 | end | |
1195 | mesh.Offset=offset | |
1196 | mesh.Scale=scale | |
1197 | return mesh | |
1198 | end | |
1199 | ||
1200 | function weld(parent,part0,part1,c0,c1) | |
1201 | local weld=it("Weld") | |
1202 | weld.Parent=parent | |
1203 | weld.Part0=part0 | |
1204 | weld.Part1=part1 | |
1205 | weld.C0=c0 | |
1206 | weld.C1=c1 | |
1207 | return weld | |
1208 | end | |
1209 | ||
1210 | Player=game:GetService('Players').LocalPlayer | |
1211 | Character=Player.Character | |
1212 | Mouse=Player:GetMouse() | |
1213 | m=Instance.new('Model',Character) | |
1214 | it=Instance.new | |
1215 | function nooutline(part) | |
1216 | part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10 | |
1217 | end | |
1218 | function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size) | |
1219 | local fp=it("Part") | |
1220 | fp.formFactor=formfactor | |
1221 | fp.Parent=parent | |
1222 | fp.Reflectance=reflectance | |
1223 | fp.Transparency=transparency | |
1224 | fp.CanCollide=false | |
1225 | fp.Locked=true | |
1226 | fp.BrickColor=BrickColor.new(tostring(brickcolor)) | |
1227 | fp.Name=name | |
1228 | fp.Size=size | |
1229 | fp.Position=Character.Torso.Position | |
1230 | nooutline(fp) | |
1231 | fp.Material=material | |
1232 | fp:BreakJoints() | |
1233 | return fp | |
1234 | end | |
1235 | function mesh(Mesh,part,meshtype,meshid,offset,scale) | |
1236 | local mesh=it(Mesh) | |
1237 | mesh.Parent=part | |
1238 | if Mesh=="SpecialMesh" then | |
1239 | mesh.MeshType=meshtype | |
1240 | mesh.MeshId=meshid | |
1241 | end | |
1242 | mesh.Offset=offset | |
1243 | mesh.Scale=scale | |
1244 | return mesh | |
1245 | end | |
1246 | function weld(parent,part0,part1,c0,c1) | |
1247 | local weld=it("Weld") | |
1248 | weld.Parent=parent | |
1249 | weld.Part0=part0 | |
1250 | weld.Part1=part1 | |
1251 | weld.C0=c0 | |
1252 | weld.C1=c1 | |
1253 | return weld | |
1254 | end | |
1255 | ||
1256 | Handle=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Mid gray","Handle",Vector3.new(0.275000006, 1.73512506, 0.280375004)) | |
1257 | HandleWeld=weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, -1.10559327e-007, 0, 1.10559313e-007, 0.999999881, -6.82671057e-008, 7.54756585e-015, 6.82671129e-008, 1),CFrame.new(-0.069039166, -0.113463402, 1.04289675, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007)) | |
1258 | mesh("SpecialMesh",Handle,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1.04999995, 0.5)) | |
1259 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.228, 0.213375002)) | |
1260 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.96695328e-006, 1.76659834, -0.297748327, 1, -1.86023797e-007, 5.96046519e-008, -5.96047443e-008, -4.97983308e-007, 1, -1.86023769e-007, -1, -4.97983308e-007)) | |
1261 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.125, 0.375)) | |
1262 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.214124978, 0.205375016)) | |
1263 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.86247182, 0.341249466, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007)) | |
1264 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.75, 0.75)) | |
1265 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.228, 0.213375002)) | |
1266 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.76659834, 0.369124293, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007)) | |
1267 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.125, 0.375)) | |
1268 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.252000004, 0.213375002)) | |
1269 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.78813934e-006, -1.95409656, 0.369124651, 1, -3.5029597e-008, -5.96046519e-008, -5.96046306e-008, 6.17193905e-007, -1, 3.50296325e-008, 1, 6.17193905e-007)) | |
1270 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.125, 0.375)) | |
1271 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.252000004, 0.213375002)) | |
1272 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-8.94069672e-007, -1.95409656, -0.297748804, -1, -5.23922949e-008, 5.96046519e-008, -5.96046803e-008, 6.17193905e-007, -1, 5.23922594e-008, -1, -6.17193905e-007)) | |
1273 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.125, 0.375)) | |
1274 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004)) | |
1275 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.13575315, -0.0312535167, 1.63871276, -5.96046448e-008, -0.707106888, -0.707106709, 1, 1.651742e-007, -2.49467973e-007, 2.93196308e-007, -0.707106709, 0.707106888)) | |
1276 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1277 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.413124949, 0.622375011)) | |
1278 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.98023224e-007, -1.16725111, -1.41408849, 1, 1.56260029e-007, -2.68220901e-007, -7.91682311e-008, -0.707106948, -0.70710665, -3.00153374e-007, 0.70710665, -0.707106888)) | |
1279 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5)) | |
1280 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.204125047, 0.287375003)) | |
1281 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.02655792e-006, -1.16711032, -0.0589969158, 1, 1.08027862e-007, 0, -5.37960721e-014, 4.97983308e-007, -1, -1.08027862e-007, 1, 4.97983308e-007)) | |
1282 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5)) | |
1283 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.221124932, 0.448374987)) | |
1284 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.36441803e-007, -2.35079217, 0.103010416, 1, 2.03386463e-007, -1.49011612e-007, -1.4901174e-007, 6.17194019e-007, -1, -2.03386378e-007, 1, 6.17194075e-007)) | |
1285 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.800000012)) | |
1286 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.200000003, 0.213375002)) | |
1287 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.71972668, 0.400372267, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007)) | |
1288 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.25, 0.5)) | |
1289 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.207000002, 0.303375006)) | |
1290 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-8.94069672e-007, -2.02871776, -0.278748035, -1, -1.71600149e-007, 5.96046519e-008, -5.96047229e-008, 4.38378009e-007, -1, 1.71600121e-007, -1, -4.38378009e-007)) | |
1291 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.5, 0.5)) | |
1292 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.207000002, 0.303375006)) | |
1293 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(8.94069672e-007, -2.02871752, 0.419371605, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007)) | |
1294 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.5, 0.5)) | |
1295 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.223999977, 0.375375003)) | |
1296 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(7.15255737e-007, -2.16047049, 0.508368373, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007)) | |
1297 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.699999988, 0.5)) | |
1298 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.405000031, 0.200000003, 0.280375004)) | |
1299 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.35976458, -0.0312541127, 1.86352515, 5.96046448e-008, 0.500000238, -0.866025329, -1, -3.57641632e-008, -8.94739998e-008, -7.57096927e-008, 0.866025269, 0.500000238)) | |
1300 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1301 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.203125, 0.234375)) | |
1302 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0, -1.08190203, 0.2501719, 1, -3.12822095e-007, 5.96046519e-008, -1.13020228e-007, -0.173648566, 0.98480773, -2.97719339e-007, -0.98480767, -0.173648566)) | |
1303 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.502499998, 0.400000006)) | |
1304 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.409124941, 0.360375017)) | |
1305 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.05311584e-006, 1.95058596, 0.253540456, -1, 1.02354932e-007, -1.49011612e-007, -1.17442823e-007, 0.258818656, 0.965925932, 1.3743427e-007, 0.965925992, -0.258818686)) | |
1306 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1)) | |
1307 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.200000003, 0.303375006)) | |
1308 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.68847609, 0.419371486, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007)) | |
1309 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.5, 0.5)) | |
1310 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.207000002, 0.213375002)) | |
1311 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(7.74860382e-007, -1.99747372, 0.400373936, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007)) | |
1312 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.25, 0.5)) | |
1313 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.4375, 0.25)) | |
1314 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -1.18813586, 0.908314347, -1, -1.16559704e-008, -1.49011612e-007, -1.31319965e-007, 0.544638991, 0.838670731, 7.13820114e-008, 0.838670731, -0.544638932)) | |
1315 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25)) | |
1316 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.405000031, 0.200000003, 0.280375004)) | |
1317 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.35976434, -0.0312459469, 1.86352515, -1.49011612e-007, -0.500000238, 0.866025269, 1, -3.47141249e-009, 1.70059607e-007, -8.20235115e-008, 0.866025269, 0.500000238)) | |
1318 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1319 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.409124911, 0.268375039)) | |
1320 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.03983688e-006, 1.82663035, 1.68847704, -1, 2.51590194e-007, -1.49011612e-007, -2.54842973e-007, -0.500000179, 0.866025329, 1.43377648e-007, 0.866025269, 0.500000179)) | |
1321 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1)) | |
1322 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.698124886, 0.372374952)) | |
1323 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007)) | |
1324 | mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.455000013, 1, 1)) | |
1325 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.200000003, 0.303375006)) | |
1326 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.08616257e-006, 1.6884762, -0.278747916, 1, -1.86023797e-007, 5.96046519e-008, -5.96047443e-008, -4.97983308e-007, 1, -1.86023769e-007, -1, -4.97983308e-007)) | |
1327 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.5, 0.5)) | |
1328 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.330124885, 0.214375019)) | |
1329 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(7.74860382e-007, 2.75683522, 1.15006804, 1, 2.61612684e-007, -5.96046519e-008, -4.6201059e-008, 0.386711121, 0.922201037, 2.64309278e-007, -0.922201037, 0.386711121)) | |
1330 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 1, 0.100000001)) | |
1331 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.200000003, 0.303375006)) | |
1332 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.90734863e-006, 1.20410335, -0.1381253, 1, -1.30388145e-007, 5.96046519e-008, -5.96047158e-008, -4.97983308e-007, 1, -1.30388116e-007, -1, -4.97983308e-007)) | |
1333 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5)) | |
1334 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004)) | |
1335 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.13575315, -0.0312504768, 1.638713, 0, 0.707106888, 0.707106709, -1, -1.57551966e-007, 1.57552009e-007, 2.2281219e-007, -0.707106709, 0.707106888)) | |
1336 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1337 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004)) | |
1338 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.999259949, -0.0312482715, -0.496301651, 8.94069814e-008, 0.707106769, -0.707106829, 1, -2.08849031e-007, -8.2408441e-008, -2.0595013e-007, -0.707106829, -0.707106709)) | |
1339 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1340 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.200000003, 0.303375006)) | |
1341 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.96695328e-006, 1.20410311, 0.278748631, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007)) | |
1342 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5)) | |
1343 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.745124936, 0.280375004)) | |
1344 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, 0.302499771, 0.0937513113, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007)) | |
1345 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5)) | |
1346 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.415125012, 0.234375)) | |
1347 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, -0.659994602, 0.135124326, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007)) | |
1348 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.400000006)) | |
1349 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.630125046, 0.280375004)) | |
1350 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.14576721e-006, 1.25361502, 0.392871499, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007)) | |
1351 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.395000011, 0.75, 0.25)) | |
1352 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.248124972, 0.311374992)) | |
1353 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, 0.954994917, 0.140751123, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007)) | |
1354 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5)) | |
1355 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.25999999, 0.375, 0.21875)) | |
1356 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -1.50817347, 0.125254035, -1, 6.68158862e-008, -1.49011612e-007, -1.4901164e-007, -4.97983194e-007, 1, 6.68158151e-008, 1, 4.97983194e-007)) | |
1357 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 1)) | |
1358 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.35512504, 0.283374995)) | |
1359 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, 0.91299367, 0.281997681, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007)) | |
1360 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.560000002, 0.5)) | |
1361 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.203125, 0.234375)) | |
1362 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, -0.781131983, 0.0222299099, -1, 2.86555604e-007, -5.96046519e-008, -1.08459133e-007, -0.173648685, 0.98480773, 2.71851889e-007, 0.98480773, 0.173648685)) | |
1363 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.400000006)) | |
1364 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.35512504, 0.416375011)) | |
1365 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, 0.522374153, 0.125002146, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007)) | |
1366 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.560000002, 0.5)) | |
1367 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004)) | |
1368 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.99925971, -0.0312514305, -0.496301413, 0, -0.707106709, 0.707106829, -1, 1.69960003e-007, 1.69959961e-007, -2.40359725e-007, -0.707106888, -0.707106769)) | |
1369 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1370 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.643000007, 0.200000003, 0.280375004)) | |
1371 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.51446462, -0.0312519073, 0.511714339, 0, -4.38378066e-007, 1, -1, 2.45074915e-007, 1.0743547e-013, -2.45074915e-007, -1, -4.38378066e-007)) | |
1372 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1373 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.54112494, 0.367374986)) | |
1374 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.57627869e-007, -1.79205251, -0.0442371368, 1, 1.5625281e-007, -2.68220901e-007, -2.68220987e-007, 6.17193848e-007, -1, -1.56252639e-007, 1, 6.17193905e-007)) | |
1375 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.600000024)) | |
1376 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.630125046, 0.280375004)) | |
1377 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, -0.552494049, 0.0937507153, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007)) | |
1378 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5)) | |
1379 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Mid gray","Part",Vector3.new(0.275000006, 0.216124982, 0.280375004)) | |
1380 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.78813934e-007, 0.63488543, 0.590048075, -1, 2.21816833e-007, 5.96046519e-008, -1.14701351e-007, -0.707106829, 0.707106769, 1.98995039e-007, 0.707106769, 0.707106829)) | |
1381 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1.04999995, 0.5)) | |
1382 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.309124947, 0.343375027)) | |
1383 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.9935112e-006, 1.40163493, 1.65097666, -1, 2.51590194e-007, -1.49011612e-007, -2.54842973e-007, -0.500000179, 0.866025329, 1.43377648e-007, 0.866025269, 0.500000179)) | |
1384 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1)) | |
1385 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.998124957, 0.280375004)) | |
1386 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, 0.428994179, 0.0937510729, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007)) | |
1387 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5)) | |
1388 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.405125052, 0.211375013)) | |
1389 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, 0.446621895, 0.0734990835, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007)) | |
1390 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.560000002, 0.5)) | |
1391 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.413124949, 0.622375011)) | |
1392 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.7285347e-006, 0.967765272, 0.720929861, -1, 2.21816833e-007, 5.96046519e-008, -1.14701351e-007, -0.707106829, 0.707106769, 1.98995039e-007, 0.707106769, 0.707106829)) | |
1393 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5)) | |
1394 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.275000006, 0.320124894, 0.316374987)) | |
1395 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007)) | |
1396 | mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.457500011, 1, 1)) | |
1397 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.322125077, 0.363375008)) | |
1398 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.84774399e-006, 0.960361481, 0.0573717356, 1, -6.68157512e-008, -5.96046519e-008, 5.96046164e-008, -4.97983308e-007, 1, -6.68157796e-008, -1, -4.97983308e-007)) | |
1399 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 1)) | |
1400 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.51412493, 0.622375011)) | |
1401 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.96695328e-006, 1.51446474, -0.287093759, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007)) | |
1402 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5)) | |
1403 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.204125047, 0.210375011)) | |
1404 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, -1.12023759, -0.0676275492, -1, -2.06059703e-008, 0, -7.19086588e-015, 3.48970019e-007, -1, 2.06059703e-008, -1, -3.48970019e-007)) | |
1405 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5)) | |
1406 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.261124998, 0.245374992)) | |
1407 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0, -0.201990128, 0.0982512236, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007)) | |
1408 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.375, 1.04999995, 0.5)) | |
1409 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.206125051, 0.280375004)) | |
1410 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.38418579e-007, -0.137369633, 0.0937509537, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007)) | |
1411 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.560000002, 0.5)) | |
1412 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.578125, 0.234375)) | |
1413 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.63588333e-006, -1.29723644, 0.0231808424, 1, -1.86023783e-007, -5.96046519e-008, 5.96045879e-008, -3.48969991e-007, 1, -1.86023797e-007, -1, -3.48969991e-007)) | |
1414 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.400000006)) | |
1415 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.25999999, 0.225500003, 0.210125014)) | |
1416 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.00167286396, 0.746741295, -0.00556850433, -1, 6.68158222e-008, -5.96046519e-008, 5.96046803e-008, 4.38378009e-007, -1, -6.68157938e-008, -1, -4.38378009e-007)) | |
1417 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 1)) | |
1418 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.214125022, 0.234375)) | |
1419 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.81469727e-006, 0.381998301, -0.135124564, -1, -5.23922843e-008, 1.49011612e-007, -1.4901164e-007, 4.97983251e-007, -1, 5.23922097e-008, -1, -4.97983251e-007)) | |
1420 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.560000002, 0.400000006)) | |
1421 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.270000011, 0.21875, 0.234375)) | |
1422 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.35113907e-006, -1.64879727, 0.0388069153, 1, -1.86023783e-007, -5.96046519e-008, 5.96045879e-008, -3.48969991e-007, 1, -1.86023797e-007, -1, -3.48969991e-007)) | |
1423 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5)) | |
1424 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.200000003, 0.449500024, 0.236624971)) | |
1425 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0, -1.14855242, -0.0782039165, -1, 1.1814204e-007, -5.96046519e-008, -8.81511255e-008, -0.258819431, 0.965925753, 9.8689604e-008, 0.965925813, 0.258819431)) | |
1426 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25)) | |
1427 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.200000003, 0.46875, 0.220999971)) | |
1428 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -1.17250943, 0.949309707, -1, -1.16559704e-008, -1.49011612e-007, -1.31319965e-007, 0.544638991, 0.838670731, 7.13820114e-008, 0.838670731, -0.544638932)) | |
1429 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25)) | |
1430 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.35212487, 0.214375019)) | |
1431 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.96695328e-006, 1.7106328, -4.67702293, 1, -5.28256834e-008, 3.27825546e-007, -1.54116776e-007, -0.948323309, 0.317305803, 2.94122714e-007, -0.317305803, -0.948323369)) | |
1432 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.5, 0.100000001)) | |
1433 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.288000047, 0.200000003, 0.27837503)) | |
1434 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.00251865, -0.0312470198, -0.784425139, -5.96046448e-008, 0.362437576, 0.932008028, 1, 8.8373362e-008, 2.95864595e-008, -7.16414377e-008, 0.932008028, -0.362437606)) | |
1435 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1436 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 0.217000008, 0.200375021)) | |
1437 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, -3.18676305, -1.53718555, 1, 8.19928516e-008, -2.68220901e-007, -2.15646111e-007, -0.386710614, -0.922201157, -1.79337775e-007, 0.922201157, -0.386710614)) | |
1438 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 0.200000003, 0.600000024)) | |
1439 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.49000001, 0.200000003, 0.290374994)) | |
1440 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.73874784, -0.0312489271, 0.358844757, -8.94069814e-008, -0.0130901812, 0.999914408, 1, 5.69744678e-008, 9.01605191e-008, -5.81498085e-008, 0.999914408, 0.0130901812)) | |
1441 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1442 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.24712491, 0.214375019)) | |
1443 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.37090683e-006, 3.7712388, 4.10999966, 1, 2.20300279e-007, -3.27825546e-007, 7.26464435e-008, 0.713250935, 0.70090878, 3.88232309e-007, -0.70090884, 0.713250995)) | |
1444 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.600000024, 0.100000001)) | |
1445 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.621124864, 0.214375019)) | |
1446 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.96046448e-007, 3.43644333, -0.254856586, 1, 2.8833017e-007, 5.96046519e-008, -4.31625189e-008, -0.0566928945, 0.998391747, 2.91245613e-007, -0.998391688, -0.0566928908)) | |
1447 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 1, 0.100000001)) | |
1448 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.940000057, 0.200000003, 0.285374999)) | |
1449 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.0734067, -0.0312533975, 4.65720272, 1.49011626e-007, 0.694658399, -0.719339788, -1, 3.30585053e-008, -1.75226305e-007, -9.79421202e-008, 0.719339788, 0.694658399)) | |
1450 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1451 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.84512496, 0.422374964)) | |
1452 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.76837158e-007, 3.25642681, 0.00496280193, 1, 2.88228279e-007, 5.96046519e-008, -5.96046021e-008, -1.70154109e-007, 1, 2.88228279e-007, -1, -1.70154095e-007)) | |
1453 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5)) | |
1454 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 1.04612494, 0.214375019)) | |
1455 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.03983688e-006, 6.0806818, -0.48661232, 1, 2.83280116e-007, 0, 3.20681721e-008, -0.113203041, 0.993571877, 2.81459165e-007, -0.993571937, -0.113203049)) | |
1456 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.899999976, 0.100000001)) | |
1457 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.49000001, 0.200000003, 0.290374994)) | |
1458 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.73874784, -0.0312509537, 0.358844757, 0, 0.0130901793, -0.999914348, -1, -5.85088848e-008, -7.65957409e-010, -5.85139013e-008, 0.999914408, 0.0130901802)) | |
1459 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1460 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 1.46012485, 0.422374964)) | |
1461 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.05311584e-006, 5.85410023, -0.495341063, 1, 2.75573711e-007, 1.49011612e-007, -1.16857876e-007, -0.113203339, 0.993571877, 2.90670897e-007, -0.993571937, -0.113203347)) | |
1462 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5)) | |
1463 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.210000038, 0.200000003, 0.285374999)) | |
1464 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.630329967, -0.0312533975, 7.20098686, 1.11758709e-008, 0.99984777, -0.017452918, -1, 8.5759515e-009, -1.49042407e-007, -1.48870043e-007, 0.0174529161, 0.99984777)) | |
1465 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 0.5)) | |
1466 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(1.78499997, 0.200000003, 0.301375002)) | |
1467 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.64131165, -0.0312466621, 0.814543009, -1.78813963e-007, -0.104528897, 0.994521916, 1, 6.1102142e-008, 1.86221044e-007, -8.02329012e-008, 0.994521916, 0.104528897)) | |
1468 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1469 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.678124905, 0.214375019)) | |
1470 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.96046448e-007, 5.27017689, -0.0733480453, 1, 2.8833017e-007, 5.96046519e-008, -4.31626219e-008, -0.0566925369, 0.998391747, 2.91245584e-007, -0.998391688, -0.0566925332)) | |
1471 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.800000012, 0.100000001)) | |
1472 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.210000038, 0.200000003, 0.285374999)) | |
1473 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.630329847, -0.0312465429, 7.20098686, -9.87201929e-008, -0.99984777, 0.017452918, 1, -9.613413e-008, 1.49012436e-007, -1.47311923e-007, 0.0174529161, 0.99984777)) | |
1474 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 0.5)) | |
1475 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.47012496, 0.214375019)) | |
1476 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.11272049e-006, 4.9387393, -4.49442863, 1, 2.42971879e-007, 2.68220901e-007, -1.46989407e-008, -0.713250041, 0.700909734, 3.61609949e-007, -0.700909734, -0.713250101)) | |
1477 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.699999988, 0.100000001)) | |
1478 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.288000047, 0.200000003, 0.27837503)) | |
1479 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.00251842, -0.0312527418, -0.784425259, -2.98023224e-008, -0.362437576, -0.932008028, -1, -3.9197058e-008, 4.7219352e-008, -5.36460405e-008, 0.932008028, -0.362437606)) | |
1480 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1481 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.533124864, 0.214375019)) | |
1482 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.01327896e-006, 4.10316849, -0.103866458, 1, 2.8833017e-007, 5.96046519e-008, -4.31625473e-008, -0.0566928051, 0.998391747, 2.91245584e-007, -0.998391688, -0.0566928014)) | |
1483 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.899999976, 0.100000001)) | |
1484 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 0.217000008, 0.200375021)) | |
1485 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -3.33085537, -1.5976094, 1, 8.19928516e-008, -2.68220901e-007, -2.15646111e-007, -0.386710614, -0.922201157, -1.79337775e-007, 0.922201157, -0.386710614)) | |
1486 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 0.200000003, 0.600000024)) | |
1487 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.235124931, 1.6693753)) | |
1488 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.64916229e-006, -0.673488855, 5.65330791, -1, 2.57733284e-008, -4.1723257e-007, 2.16240803e-008, -0.993572056, -0.11320243, -4.17468186e-007, -0.113202423, 0.993571997)) | |
1489 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 1)) | |
1490 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.480124891, 0.214375019)) | |
1491 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.01327896e-006, 2.6059866, 0.051631093, 1, 2.90808202e-007, 5.96046519e-008, -5.96046306e-008, -8.07461475e-008, 1, 2.90808202e-007, -1, -8.07461333e-008)) | |
1492 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 1, 0.100000001)) | |
1493 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.235124931, 1.6693753)) | |
1494 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.29153442e-006, -0.399590373, 4.02885008, -1, 2.75204592e-009, -4.1723257e-007, 2.09061284e-008, -0.998391747, -0.0566919968, -4.16717569e-007, -0.0566919968, 0.998391747)) | |
1495 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 1)) | |
1496 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.237124875, 0.214375019)) | |
1497 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.08616257e-006, 2.20885611, -3.10965157, 1, 1.22782865e-007, 3.27825546e-007, -8.59755218e-008, -0.82164669, 0.569997251, 3.39342648e-007, -0.569997191, -0.821646631)) | |
1498 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.800000012, 0.100000001)) | |
1499 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 1.65712488, 0.359375)) | |
1500 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.1920929e-006, 4.40055227, -0.0314526558, 1, 2.82533193e-007, 5.96046519e-008, -4.34911662e-008, -0.0566928945, 0.998391747, 2.85457958e-007, -0.998391688, -0.0566928908)) | |
1501 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5)) | |
1502 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.488124937, 0.359375)) | |
1503 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(9.53674316e-007, 2.57349205, 0.495863676, 1, 2.95756422e-007, 5.96046519e-008, -9.27020594e-008, 0.113203131, 0.993571877, 2.87107866e-007, -0.993571937, 0.113203138)) | |
1504 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5)) | |
1505 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.221124932, 0.655375004)) | |
1506 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.84774399e-006, 1.02953684, 2.8258214, -1, -1.09740803e-007, -3.27825546e-007, -2.40661642e-008, -0.923879445, 0.382683516, -3.44867317e-007, 0.382683575, 0.923879564)) | |
1507 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.899999976)) | |
1508 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 0.217000008, 0.200375021)) | |
1509 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -3.40289879, -1.62781823, 1, 8.19928516e-008, -2.68220901e-007, -2.15646111e-007, -0.386710614, -0.922201157, -1.79337775e-007, 0.922201157, -0.386710614)) | |
1510 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 0.200000003, 0.600000024)) | |
1511 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.488124937, 0.418375015)) | |
1512 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.07288361e-006, 2.60998273, -0.0503669977, 1, 2.90808202e-007, 5.96046519e-008, -5.96046306e-008, -8.07461475e-008, 1, 2.90808202e-007, -1, -8.07461333e-008)) | |
1513 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.899999976)) | |
1514 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 0.217000008, 0.200375021)) | |
1515 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -3.25880861, -1.56739795, 1, 8.19928516e-008, -2.68220901e-007, -2.15646111e-007, -0.386710614, -0.922201157, -1.79337775e-007, 0.922201157, -0.386710614)) | |
1516 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 0.200000003, 0.600000024)) | |
1517 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.265124857, 0.214375019)) | |
1518 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.1920929e-007, 3.70434904, 2.44769764, 1, 3.05401159e-007, -1.49011612e-007, -3.84168999e-008, 0.537299871, 0.843391299, 3.37636607e-007, -0.843391299, 0.537299871)) | |
1519 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.899999976, 0.100000001)) | |
1520 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.618124902, 0.209375009)) | |
1521 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.07288361e-006, 2.67497754, -0.154865503, 1, 2.90808202e-007, 5.96046519e-008, -5.96046306e-008, -8.07461475e-008, 1, 2.90808202e-007, -1, -8.07461333e-008)) | |
1522 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.899999976)) | |
1523 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.484124899, 0.227375031)) | |
1524 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.13248825e-006, 2.07749343, -1.55897069, -1, 2.0314171e-007, -1.49011612e-007, 3.82758287e-008, 0.707107008, 0.70710659, 2.49009986e-007, 0.70710659, -0.707106948)) | |
1525 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 0.300000012, 1)) | |
1526 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.454124868, 0.214375019)) | |
1527 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.09944153e-006, 4.72574425, -0.500342607, 1, 2.72365185e-007, 1.49011612e-007, -1.17221134e-007, -0.113203213, 0.993571877, 2.87482976e-007, -0.993571877, -0.113203213)) | |
1528 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.899999976, 0.100000001)) | |
1529 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 1.65712488, 0.422374964)) | |
1530 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.25169754e-006, 4.40054798, -0.205949783, 1, 2.82533193e-007, 5.96046519e-008, -4.34911662e-008, -0.0566928945, 0.998391747, 2.85457958e-007, -0.998391688, -0.0566928908)) | |
1531 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5)) | |
1532 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.446125001, 0.496375084)) | |
1533 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.7285347e-006, 0.313133836, 6.93109894, -1, 3.38840884e-008, 5.96046519e-008, -3.38840529e-008, -1, 5.74912178e-007, 5.96046661e-008, 5.74912178e-007, 1)) | |
1534 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.899999976)) | |
1535 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.421999991, 0.200000003, 0.280375004)) | |
1536 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.558792, -0.0312539935, -0.45239532, 2.98023224e-008, -0.707106769, -0.707106829, -1, -7.48441451e-008, 3.26972902e-008, -7.60432783e-008, 0.707106829, -0.707106709)) | |
1537 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1538 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.277124941, 0.702375054)) | |
1539 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.76837158e-007, -2.44779181, 0.103008986, 1, 2.03386463e-007, -1.49011612e-007, -1.4901174e-007, 6.17194019e-007, -1, -2.03386378e-007, 1, 6.17194075e-007)) | |
1540 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.5, 0.800000012)) | |
1541 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.422124922, 0.412375003)) | |
1542 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.31130219e-006, -1.70811987, 0.370481491, 1, 1.56259688e-007, -2.68220901e-007, -2.99524515e-007, 0.258819312, -0.965925872, -8.15145142e-008, 0.965925872, 0.258819312)) | |
1543 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.5)) | |
1544 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.207000002, 0.303375006)) | |
1545 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.7285347e-006, -1.7005955, 0.278747916, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007)) | |
1546 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5)) | |
1547 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.421999991, 0.200000003, 0.280375004)) | |
1548 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.55879188, -0.0312462449, -0.452395201, 5.96046448e-008, 0.707106769, 0.707106829, 1, -4.38479519e-009, -7.99089008e-008, -5.34036033e-008, 0.707106829, -0.707106709)) | |
1549 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1550 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.275000006, 0.204124942, 0.464375019)) | |
1551 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.36441803e-007, -2.27592182, 0.103008866, 1, 2.03386463e-007, -1.49011612e-007, -1.4901174e-007, 6.17194019e-007, -1, -2.03386378e-007, 1, 6.17194075e-007)) | |
1552 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 1.04999995, 0.800000012)) | |
1553 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.23299998, 0.295375019)) | |
1554 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.08616257e-006, -0.537618876, 2.27821803, -1, 3.50292382e-008, 2.68220901e-007, -3.50290357e-008, -1, 7.53727932e-007, 2.6822093e-007, 7.53727932e-007, 1)) | |
1555 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25)) | |
1556 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.221124932, 0.418375015)) | |
1557 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.54972076e-006, 1.79147363, 1.84832418, -1, -2.19832074e-007, -2.68220901e-007, -3.42159723e-008, -0.707107008, 0.70710659, -3.45105576e-007, 0.70710659, 0.707106948)) | |
1558 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.899999976)) | |
1559 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Institutional white","Part",Vector3.new(0.275000006, 0.200124964, 0.287375033)) | |
1560 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-6.55651093e-007, -0.200989008, 2.46776938, -1, 3.38840884e-008, 5.96046519e-008, -3.38840529e-008, -1, 5.74912178e-007, 5.96046661e-008, 5.74912178e-007, 1)) | |
1561 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 1, 0.899999976)) | |
1562 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.216999978, 0.295375019)) | |
1563 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -0.42824471, 2.46571684, -1, 3.50217348e-008, 2.68220901e-007, -3.50215323e-008, -1, 7.53727875e-007, 2.6822093e-007, 7.53727875e-007, 1)) | |
1564 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.75, 0.25)) | |
1565 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.221124932, 0.418375015)) | |
1566 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.1920929e-007, 1.93505025, 1.70474756, 1, 1.8804613e-007, -2.68220901e-007, 5.6691988e-008, 0.707107067, 0.707106471, 3.22629546e-007, -0.707106531, 0.707107067)) | |
1567 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.899999976)) | |
1568 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.207000002, 0.303375006)) | |
1569 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.7285347e-006, -1.70059586, -0.138124347, -1, -1.71600149e-007, 5.96046519e-008, -5.96047229e-008, 4.38378009e-007, -1, 1.71600121e-007, -1, -4.38378009e-007)) | |
1570 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5)) | |
1571 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.331124961, 0.412375003)) | |
1572 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.98023224e-007, -1.41137242, -1.47533894, 1, 1.56260029e-007, -2.68220901e-007, -7.91682311e-008, -0.707106948, -0.70710665, -3.00153374e-007, 0.70710665, -0.707106888)) | |
1573 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.5)) | |
1574 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.709124923, 0.47437498)) | |
1575 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.25169754e-006, -1.87605298, 0.196760774, 1, 1.5625281e-007, -2.68220901e-007, -2.68220987e-007, 6.17193848e-007, -1, -1.56252639e-007, 1, 6.17193905e-007)) | |
1576 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.800000012)) | |
1577 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.277124912, 0.227375031)) | |
1578 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.15904617e-006, 2.51099396, -0.945535302, -1, 2.51590308e-007, -1.49011612e-007, -3.25266569e-009, 0.50000006, 0.866025388, 2.92389416e-007, 0.866025448, -0.50000006)) | |
1579 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 0.300000012, 1)) | |
1580 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Institutional white","Part",Vector3.new(0.275000006, 0.200124964, 0.287375033)) | |
1581 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.01327896e-006, 0.00686681271, 2.46776795, 1, 4.04674836e-008, 5.96046519e-008, -4.04674481e-008, 1, -5.74912178e-007, -5.96046803e-008, 5.74912178e-007, 1)) | |
1582 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 1, 0.899999976)) | |
1583 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.84512496, 0.359375)) | |
1584 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.17232513e-007, 3.25642681, 0.179460406, 1, 2.88228279e-007, 5.96046519e-008, -5.96046021e-008, -1.70154109e-007, 1, 2.88228279e-007, -1, -1.70154095e-007)) | |
1585 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 0.5)) | |
1586 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.453000009, 0.200000003, 0.280375004)) | |
1587 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.95527112, -0.0312464833, 0.483453929, 1.19209275e-007, 0.258818507, 0.965925932, 1, -8.24298763e-009, -1.21205815e-007, -2.34081945e-008, 0.965925932, -0.258818507)) | |
1588 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1589 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.453000009, 0.200000003, 0.280375004)) | |
1590 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.95527112, -0.0312538147, 0.483453929, -2.98023224e-008, -0.258818537, -0.965925992, -1, -2.11072013e-008, 3.65092774e-008, -2.98372704e-008, 0.965925932, -0.258818537)) | |
1591 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1592 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.25999999, 0.3125, 0.320125014)) | |
1593 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.00167268515, -1.01674032, 0.0665671825, -1, -2.06061035e-008, 5.96046519e-008, 5.96046661e-008, -4.97983308e-007, 1, -2.06060733e-008, 1, 4.97983308e-007)) | |
1594 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 1)) | |
1595 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.698124886, 0.732374966)) | |
1596 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007)) | |
1597 | mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.425000012, 1, 1)) | |
1598 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.698124886, 0.534374952)) | |
1599 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007)) | |
1600 | mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.452499986, 1, 1)) | |
1601 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.368124902, 0.378374994)) | |
1602 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.20537186e-006, 1.49373317, 0.509495497, -1, 1.54237696e-007, -1.49011612e-007, -1.49011683e-007, -4.38377924e-007, 1, 1.54237625e-007, 1, 4.38377953e-007)) | |
1603 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 1)) | |
1604 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.567124963, 0.311374992)) | |
1605 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.96695328e-006, 0.994490385, 0.140751123, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007)) | |
1606 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5)) | |
1607 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.418250024, 0.25)) | |
1608 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.96046448e-008, -1.13293266, -0.127015591, -1, 1.1814204e-007, -5.96046519e-008, -8.81511255e-008, -0.258819431, 0.965925753, 9.8689604e-008, 0.965925813, 0.258819431)) | |
1609 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25)) | |
1610 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.403124899, 0.352375001)) | |
1611 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.14576721e-006, 1.55247092, -0.700873375, -1, 3.75780473e-009, -1.49011612e-007, -1.02709933e-007, 0.707106948, 0.707106709, 1.08024309e-007, 0.70710665, -0.707106888)) | |
1612 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1)) | |
1613 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(1.625, 0.200000003, 0.296375006)) | |
1614 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.97657108, -0.0312469006, 0.569297791, -1.78813934e-007, -0.0523363948, 0.99862951, 1, 7.44965192e-008, 1.82963561e-007, -8.39700789e-008, 0.99862957, 0.0523363985)) | |
1615 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1616 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.940000057, 0.200000003, 0.285374999)) | |
1617 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.0734067, -0.0312458873, 4.6572032, -2.38418608e-007, -0.694658399, 0.719339788, 1, -7.77344482e-008, 2.56373596e-007, -1.22174583e-007, 0.719339788, 0.694658399)) | |
1618 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1619 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(1.625, 0.200000003, 0.296375006)) | |
1620 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.97657156, -0.0312528014, 0.569297791, 8.94069672e-008, 0.0523363948, -0.99862957, -1, -7.9065849e-008, -9.36733713e-008, -8.38600229e-008, 0.99862957, 0.0523363948)) | |
1621 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1622 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 1.66212487, 0.359375)) | |
1623 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.84774399e-006, 5.95509291, -0.320841074, 1, 2.75573711e-007, 1.49011612e-007, -1.16857876e-007, -0.113203339, 0.993571877, 2.90670897e-007, -0.993571937, -0.113203347)) | |
1624 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5)) | |
1625 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(1.78499997, 0.200000003, 0.301375002)) | |
1626 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.64131165, -0.0312528014, 0.814543009, 8.94069672e-008, 0.104528897, -0.994521856, -1, -7.01918026e-008, -9.72769385e-008, -7.99755355e-008, 0.994521916, 0.104528904)) | |
1627 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1628 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.204125047, 0.207375005)) | |
1629 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-006, -1.16710985, 0.175246477, -1, -2.06059703e-008, 0, -7.19086588e-015, 3.48970019e-007, -1, 2.06059703e-008, -1, -3.48970019e-007)) | |
1630 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5)) | |
1631 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.223124996, 0.234375)) | |
1632 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, -0.964124441, -0.0247514248, 1, -3.01422034e-007, 5.96046519e-008, -3.31073302e-008, 0.0871552527, 0.99619478, -3.05469911e-007, -0.99619478, 0.0871552527)) | |
1633 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.400000006)) | |
1634 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.244125068, 0.416375011)) | |
1635 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.1920929e-007, -0.686996341, -0.125002146, -1, -5.23922274e-008, 1.49011612e-007, -1.49011626e-007, 3.48969991e-007, -1, 5.23921742e-008, -1, -3.48969991e-007)) | |
1636 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.560000002, 0.5)) | |
1637 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.206125051, 0.280375004)) | |
1638 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0, 0.168619156, -0.0937508345, -1, -5.23922559e-008, 1.49011612e-007, -1.4901164e-007, 4.97983251e-007, -1, 5.23921813e-008, -1, -4.97983251e-007)) | |
1639 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.560000002, 0.5)) | |
1640 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.398124993, 0.303375006)) | |
1641 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.84774399e-006, 1.4540993, 0.200625658, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007)) | |
1642 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 1)) | |
1643 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.239124984, 0.205375016)) | |
1644 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.85597229, 0.341248155, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007)) | |
1645 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1, 1)) | |
1646 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.698124886, 0.534374952)) | |
1647 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007)) | |
1648 | mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.452499986, 1, 1)) | |
1649 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.315999985, 0.310375005)) | |
1650 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.68220901e-006, 2.08321929, -0.579118371, 1, -3.05231737e-007, 5.96046519e-008, -5.96048082e-008, -4.97983308e-007, 1, -3.05231708e-007, -1, -4.97983308e-007)) | |
1651 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.5)) | |
1652 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004)) | |
1653 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.99925971, -0.0312514305, -0.496301413, 0, -0.707106709, 0.707106829, -1, 1.69960003e-007, 1.69959961e-007, -2.40359725e-007, -0.707106888, -0.707106769)) | |
1654 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1655 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.207000002, 0.213375002)) | |
1656 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-7.74860382e-007, -1.99747372, -0.297748566, -1, -1.71600149e-007, 5.96046519e-008, -5.96047229e-008, 4.38378009e-007, -1, 1.71600121e-007, -1, -4.38378009e-007)) | |
1657 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.25, 0.5)) | |
1658 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.311124951, 0.267374992)) | |
1659 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.14576721e-006, -1.94385314, 0.47499609, 1, -6.68158364e-008, 5.96046519e-008, 5.96046803e-008, 4.38378009e-007, -1, 6.6815808e-008, 1, 4.38378009e-007)) | |
1660 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.495000005, 1, 1)) | |
1661 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.200000003, 0.213375002)) | |
1662 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.96695328e-006, 1.71972692, -0.297746897, 1, -1.86023797e-007, 5.96046519e-008, -5.96047443e-008, -4.97983308e-007, 1, -1.86023769e-007, -1, -4.97983308e-007)) | |
1663 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.25, 0.5)) | |
1664 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.643000007, 0.200000003, 0.280375004)) | |
1665 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.51446462, -0.0312519073, 0.511714339, 0, -4.38378066e-007, 1, -1, 2.45074915e-007, 1.0743547e-013, -2.45074915e-007, -1, -4.38378066e-007)) | |
1666 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1667 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004)) | |
1668 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.13575315, -0.0312535167, 1.63871276, -5.96046448e-008, -0.707106888, -0.707106709, 1, 1.651742e-007, -2.49467973e-007, 2.93196308e-007, -0.707106709, 0.707106888)) | |
1669 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1670 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.643000007, 0.200000003, 0.280375004)) | |
1671 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.51446474, -0.0312479734, 0.511714339, 5.96046519e-008, 4.38378066e-007, -1, 1, -2.45074915e-007, 5.96045453e-008, -2.45074887e-007, -1, -4.38378095e-007)) | |
1672 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1673 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.577124953, 0.303375006)) | |
1674 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.96695328e-006, 1.2623533, 0.27874887, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007)) | |
1675 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.870000005, 0.5)) | |
1676 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.304124922, 0.267374992)) | |
1677 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.14576721e-006, 1.6403501, 0.474995613, -1, 1.54237696e-007, -1.49011612e-007, -1.49011683e-007, -4.38377924e-007, 1, 1.54237625e-007, 1, 4.38377953e-007)) | |
1678 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.495000005, 1, 1)) | |
1679 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.330124915, 0.226374999)) | |
1680 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.2649765e-006, 1.84085846, 0.585492015, -1, 1.54237696e-007, -1.49011612e-007, -1.49011683e-007, -4.38377924e-007, 1, 1.54237625e-007, 1, 4.38377953e-007)) | |
1681 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 1)) | |
1682 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.25999999, 0.578125, 0.21875)) | |
1683 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.00167268515, 1.04017782, 0.125254273, 1, 2.06060218e-008, 5.96046519e-008, 5.96046448e-008, 3.48969991e-007, -1, -2.06060431e-008, 1, 3.48969991e-007)) | |
1684 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 1)) | |
1685 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.239124984, 0.303375006)) | |
1686 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.85597229, 0.341248155, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007)) | |
1687 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 1, 1)) | |
1688 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.423000038, 0.200000003, 0.280375004)) | |
1689 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.828511, -0.0312466025, 1.86352599, -1.49011612e-007, -0.500000238, 0.866025269, 1, -3.47173224e-009, 1.70059423e-007, -8.20231492e-008, 0.866025269, 0.500000238)) | |
1690 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1691 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.275000006, 0.23712492, 0.375375003)) | |
1692 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.76837158e-007, -2.23306799, -0.714783967, 1, 1.28876025e-007, -1.49011612e-007, -8.8350177e-008, -0.38268286, -0.923879802, -1.76090154e-007, 0.923879862, -0.38268289)) | |
1693 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 1.04999995, 0.800000012)) | |
1694 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.410999984, 0.469375014)) | |
1695 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(7.15255737e-007, -2.25397205, 0.350374818, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007)) | |
1696 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.850000024, 0.699999988)) | |
1697 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.293000042, 0.200000003, 0.280375004)) | |
1698 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.930041909, -0.0312547088, 2.61983705, 2.68220924e-006, -0.866025388, 0.500000238, 1, 1.34954996e-006, -3.0269282e-006, 1.94662152e-006, 0.500000238, 0.866025388)) | |
1699 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1700 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.315999985, 0.303375006)) | |
1701 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.75509262e-006, -2.0832181, 0.73186779, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007)) | |
1702 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.5)) | |
1703 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.698124886, 0.638374984)) | |
1704 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007)) | |
1705 | mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 1, 1)) | |
1706 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.293000042, 0.200000003, 0.280375004)) | |
1707 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.930041909, -0.03124547, 2.61983705, -2.75671505e-006, 0.866025388, -0.500000238, -1, -1.43972136e-006, 3.0197582e-006, 1.89532614e-006, 0.500000238, 0.866025329)) | |
1708 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1709 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.275000006, 0.238124937, 0.381375015)) | |
1710 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-006, -2.16469121, -0.908047557, -1, -9.70897673e-008, -1.49011612e-007, 1.00514129e-007, 0.382683396, -0.923879564, 1.46723522e-007, -0.923879564, -0.382683367)) | |
1711 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 1.04999995, 0.800000012)) | |
1712 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.235124931, 0.586375237)) | |
1713 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.70876694e-006, -4.59392071, 4.83900547, -1, 3.01723389e-007, -3.27825546e-007, 2.23408545e-008, -0.700909495, -0.713250279, -4.44980344e-007, -0.713250279, 0.700909495)) | |
1714 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 1)) | |
1715 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.28125, 0.234375)) | |
1716 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, -1.44312787, -0.230922222, 1, -1.99133694e-007, -5.96046519e-008, 9.3278274e-008, 0.173647881, 0.984807849, -1.85758211e-007, -0.984807849, 0.173647881)) | |
1717 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.400000006)) | |
1718 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.423000038, 0.200000003, 0.280375004)) | |
1719 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.82851136, -0.0312532187, 1.86352599, 5.96046448e-008, 0.500000238, -0.866025329, -1, -3.57638221e-008, -8.94738008e-008, -7.57092948e-008, 0.866025269, 0.500000238)) | |
1720 | mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5)) | |
1721 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.287124902, 0.227375031)) | |
1722 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.03983688e-006, 2.52654123, 0.448077202, -1, 2.51590194e-007, -1.49011612e-007, -1.49011683e-007, -2.59562086e-007, 1, 2.51590166e-007, 1, 2.59562114e-007)) | |
1723 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1)) | |
1724 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.22512494, 0.42337501)) | |
1725 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.36441803e-007, 2.19158387, 0.875249863, 1, 2.87006458e-007, -5.96046519e-008, -2.30892709e-008, 0.279828936, 0.960049868, 2.92219624e-007, -0.960049927, 0.279828966)) | |
1726 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5)) | |
1727 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.221124932, 0.408374965)) | |
1728 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.76837158e-007, -2.34476542, -0.473634839, 1, 1.52993096e-007, -1.49011612e-007, -1.04336792e-007, -0.258818269, -0.965926051, -1.86346938e-007, 0.965926051, -0.258818269)) | |
1729 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.800000012)) | |
1730 | Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.221124932, 0.408374965)) | |
1731 | Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-006, -2.29170871, -0.671645045, -1, -1.21206767e-007, -1.49011612e-007, 1.12563526e-007, 0.258819103, -0.965925813, 1.55643789e-007, -0.965925813, -0.258819103)) | |
1732 | mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.800000012)) | |
1733 | Hitbox=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,1,"Medium stone grey","Hitbox",Vector3.new(4.90999985, 1.2299999, 0.200000003)) | |
1734 | Hitboxweld=weld(m,Handle,Hitbox,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.90843725, -0.0829741955, 0.0609716177, 0, -6.82671129e-008, -1, 1.1055932e-007, 1, -6.82671129e-008, 1, -1.1055932e-007, 7.547565e-015)) | |
1735 | ||
1736 | mouse.Button1Down:connect(function() | |
1737 | if attack==false and attacktype==1 then | |
1738 | attacktype=2 | |
1739 | attackone() | |
1740 | elseif attack==false and attacktype==2 then | |
1741 | attacktype=3 | |
1742 | attacktwo() | |
1743 | elseif attack==false and attacktype==3 then | |
1744 | attacktype=4 | |
1745 | attackthree() | |
1746 | elseif attack==false and attacktype==4 then | |
1747 | attacktype=1 | |
1748 | attackfour() | |
1749 | end | |
1750 | end) | |
1751 | ||
1752 | function bladespin() | |
1753 | attack=true | |
1754 | con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,5,7,math.random(10,20),"Normal",RootPart,.2,1) end) | |
1755 | for i=0,1,0.1 do | |
1756 | swait() | |
1757 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(-10)),.4) | |
1758 | RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(-75),0,math.rad(0)),.4) | |
1759 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
1760 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4) | |
1761 | end | |
1762 | for z = 0, 2 do | |
1763 | so("http://roblox.com/asset/?id=199146359",Hitbox,1.15,1.05) | |
1764 | for i=0,1,0.5 do | |
1765 | swait() | |
1766 | Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(0)),.4) | |
1767 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(90)),.4) | |
1768 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(90),0,math.rad(0)),.4) | |
1769 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
1770 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-.5,-.5)*angles(math.rad(-35),math.rad(0),math.rad(0)),.4) | |
1771 | end | |
1772 | for i=0,1,0.5 do | |
1773 | swait() | |
1774 | Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(0)),.4) | |
1775 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(180)),.4) | |
1776 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(90),0,math.rad(0)),.4) | |
1777 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
1778 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-.5,-.5)*angles(math.rad(-35),math.rad(0),math.rad(0)),.4) | |
1779 | end | |
1780 | for i=0,1,0.5 do | |
1781 | swait() | |
1782 | Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(0)),.4) | |
1783 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(240)),.4) | |
1784 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(90),0,math.rad(0)),.4) | |
1785 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
1786 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-.5,-.5)*angles(math.rad(-35),math.rad(0),math.rad(0)),.4) | |
1787 | end | |
1788 | for i=0,1,0.5 do | |
1789 | swait() | |
1790 | Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(0)),.4) | |
1791 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(360)),.4) | |
1792 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(90),0,math.rad(0)),.4) | |
1793 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
1794 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-.5,-.5)*angles(math.rad(-35),math.rad(0),math.rad(0)),.4) | |
1795 | end | |
1796 | end | |
1797 | attack=false | |
1798 | con1:disconnect() | |
1799 | end | |
1800 | ||
1801 | function flashingslash() | |
1802 | attack=true | |
1803 | for i=0,2,0.1 do | |
1804 | swait() | |
1805 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-90)),.3) | |
1806 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.4) | |
1807 | RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(0),math.rad(-80),math.rad(-80))*angles(math.rad(-75),0,math.rad(0)),.4) | |
1808 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
1809 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4) | |
1810 | end | |
1811 | so("http://roblox.com/asset/?id=540358153",Hitbox,1,0.9) | |
1812 | local b = Instance.new("Part") | |
1813 | b.Parent = char | |
1814 | b.Material = "Neon" | |
1815 | b.Color = BrickColor.new("White").Color | |
1816 | b.CanCollide = false | |
1817 | b.Shape = "Ball" | |
1818 | b.CFrame = Hitbox.CFrame | |
1819 | b.Anchored = true | |
1820 | b.Transparency = 0 | |
1821 | b.Size = vt(0.5,0.5,0.5) | |
1822 | local z = Instance.new("SpecialMesh",b) | |
1823 | z.MeshType = "Sphere" | |
1824 | con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,13,16,math.random(10,20),"Normal",RootPart,.2,1) end) | |
1825 | for i=0,2,0.1 do | |
1826 | swait() | |
1827 | z.Scale = z.Scale + vt(7.5,-0.01,-0.01) | |
1828 | b.Transparency = b.Transparency + 0.05 | |
1829 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-90)),.3) | |
1830 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-2.5,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.3) | |
1831 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(70),math.rad(90))*angles(math.rad(-75),0,math.rad(0)),.9) | |
1832 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
1833 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4) | |
1834 | end | |
1835 | con1:disconnect() | |
1836 | attack = false | |
1837 | b:Destroy() | |
1838 | end | |
1839 | ||
1840 | function executionstab() | |
1841 | attack=true | |
1842 | for i=0,5,0.1 do | |
1843 | swait() | |
1844 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-90)),.3) | |
1845 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.4) | |
1846 | RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(0),math.rad(-80),math.rad(-80))*angles(math.rad(-75),0,math.rad(0)),.4) | |
1847 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
1848 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4) | |
1849 | end | |
1850 | so("http://roblox.com/asset/?id=540358153",Hitbox,1.5,0.75) | |
1851 | local b = Instance.new("Part") | |
1852 | b.Parent = char | |
1853 | b.Material = "Neon" | |
1854 | b.Color = BrickColor.new("Really red").Color | |
1855 | b.CanCollide = false | |
1856 | b.Shape = "Ball" | |
1857 | b.CFrame = Hitbox.CFrame | |
1858 | b.Anchored = true | |
1859 | b.Transparency = 0 | |
1860 | b.Size = vt(0.5*2,0.5*2,0.5*2) | |
1861 | local z = Instance.new("SpecialMesh",b) | |
1862 | z.MeshType = "Sphere" | |
1863 | con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,50,60,math.random(10,20),"Normal",RootPart,.2,1) end) | |
1864 | for i=0,5,0.1 do | |
1865 | swait() | |
1866 | z.Scale = z.Scale + vt(15,-0.01*2,-0.01*2) | |
1867 | b.Transparency = b.Transparency + 0.05 | |
1868 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-90)),.3) | |
1869 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.3) | |
1870 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(70),math.rad(90))*angles(math.rad(-75),0,math.rad(0)),.9) | |
1871 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
1872 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4) | |
1873 | end | |
1874 | con1:disconnect() | |
1875 | attack = false | |
1876 | b:Destroy() | |
1877 | end | |
1878 | ||
1879 | function enerwave() | |
1880 | attack=true | |
1881 | for i=0,1,0.1 do | |
1882 | swait() | |
1883 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(0)),.3) | |
1884 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.4) | |
1885 | RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(0),math.rad(-80),math.rad(-80))*angles(math.rad(-75),0,math.rad(0)),.4) | |
1886 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
1887 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4) | |
1888 | end | |
1889 | so("http://roblox.com/asset/?id=540358153",Hitbox,1,0.9) | |
1890 | local lb = Instance.new("Part") | |
1891 | lb.Parent = char | |
1892 | lb.Material = "Neon" | |
1893 | lb.Color = BrickColor.new("Royal purple").Color | |
1894 | lb.CanCollide = false | |
1895 | lb.CFrame = Torso.CFrame + Torso.CFrame.lookVector*5 | |
1896 | lb.Transparency = 0 | |
1897 | lb.Size = vt(15,0.6,3) | |
1898 | local tra2 = Instance.new("ParticleEmitter",lb) | |
1899 | tra2.Texture = "http://www.roblox.com/asset/?id=745304849" | |
1900 | tra2.LightEmission = 1 | |
1901 | tra2.Color = ColorSequence.new(lb.BrickColor.Color) | |
1902 | tra2.Rate = 500000000000 | |
1903 | tra2.Lifetime = NumberRange.new(0.5) | |
1904 | tra2.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,3,0),NumberSequenceKeypoint.new(1,0,0)}) | |
1905 | tra2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,1,0)}) | |
1906 | tra2.Speed = NumberRange.new(0) | |
1907 | tra2.Rotation = NumberRange.new(-500,500) | |
1908 | tra2.VelocitySpread = 90000 | |
1909 | tra2.RotSpeed = NumberRange.new(-500,500) | |
1910 | local thing = Instance.new("SpecialMesh",lb) | |
1911 | thing.MeshType = "Sphere" | |
1912 | lb.Touched:connect(function(hit) Damagefunc(hit,10,13,math.random(10,20),"Normal",RootPart,.2,1) end) | |
1913 | local bv = Instance.new("BodyVelocity") | |
1914 | bv.maxForce = Vector3.new(1e9, 1e9, 1e9) | |
1915 | bv.velocity = Torso.CFrame.lookVector *150 | |
1916 | bv.Parent = lb | |
1917 | for i=0,2,0.1 do | |
1918 | swait() | |
1919 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(30)),.3) | |
1920 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(-30)),.3) | |
1921 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(70),math.rad(90))*angles(math.rad(-75),0,math.rad(0)),.3) | |
1922 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
1923 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4) | |
1924 | end | |
1925 | attack = false | |
1926 | wait(1) | |
1927 | lb:Destroy() | |
1928 | end | |
1929 | ||
1930 | function repeatbullet() | |
1931 | attack = true | |
1932 | for i = 0,1,0.3 do | |
1933 | swait() | |
1934 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
1935 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
1936 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
1937 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3) | |
1938 | end | |
1939 | so("http://roblox.com/asset/?id=604905243",barrelhole,1,1) | |
1940 | local lb = Instance.new("Part") | |
1941 | lb.Parent = char | |
1942 | lb.Material = "Neon" | |
1943 | lb.Color = BrickColor.new("Royal purple").Color | |
1944 | lb.CanCollide = false | |
1945 | lb.Shape = "Ball" | |
1946 | lb.CFrame = barrelhole.CFrame | |
1947 | lb.Anchored = true | |
1948 | lb.Transparency = 0 | |
1949 | lb.Size = vt(0.6,0.6,0.6) | |
1950 | local thing = Instance.new("SpecialMesh",lb) | |
1951 | thing.MeshType = "Sphere" | |
1952 | local b = Instance.new("Part") | |
1953 | b.Parent = char | |
1954 | b.Material = "Neon" | |
1955 | b.Color = BrickColor.new("Royal purple").Color | |
1956 | b.CanCollide = false | |
1957 | b.Shape = "Ball" | |
1958 | b.CFrame = barrelhole.CFrame | |
1959 | b.Anchored = true | |
1960 | b.Transparency = 0 | |
1961 | b.Size = vt(1,1,1) | |
1962 | local z = Instance.new("SpecialMesh",b) | |
1963 | z.MeshType = "Sphere" | |
1964 | local hitted = false | |
1965 | lb.Anchored = false | |
1966 | local bv = Instance.new("BodyVelocity") | |
1967 | bv.maxForce = Vector3.new(1e9, 1e9, 1e9) | |
1968 | bv.velocity = mouse.Hit.lookVector *150 | |
1969 | bv.Parent = lb | |
1970 | lb.Touched:connect(function(hit) Damagefunc(hit,9,10,math.random(10,20),"Normal",RootPart,.2,1) end) | |
1971 | z.Scale = vt(1,1,1) | |
1972 | b.Transparency = 0 | |
1973 | b.CFrame = barrelhole.CFrame | |
1974 | for i = 0,1,0.3 do | |
1975 | swait() | |
1976 | z.Scale = z.Scale + vt(0.2,0.2,0.2) | |
1977 | b.Transparency = b.Transparency + 0.25 | |
1978 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
1979 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
1980 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
1981 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-50)), 0.3) | |
1982 | end | |
1983 | for i = 0,1,0.3 do | |
1984 | swait() | |
1985 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
1986 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
1987 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
1988 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3) | |
1989 | end | |
1990 | so("http://roblox.com/asset/?id=604905243",barrelhole,1,1) | |
1991 | local lb = Instance.new("Part") | |
1992 | lb.Parent = char | |
1993 | lb.Material = "Neon" | |
1994 | lb.Color = BrickColor.new("Royal purple").Color | |
1995 | lb.CanCollide = false | |
1996 | lb.Shape = "Ball" | |
1997 | lb.CFrame = barrelhole.CFrame | |
1998 | lb.Anchored = true | |
1999 | lb.Transparency = 0 | |
2000 | lb.Size = vt(0.6,0.6,0.6) | |
2001 | local thing = Instance.new("SpecialMesh",lb) | |
2002 | thing.MeshType = "Sphere" | |
2003 | local hitted = false | |
2004 | lb.Anchored = false | |
2005 | local bv = Instance.new("BodyVelocity") | |
2006 | bv.maxForce = Vector3.new(1e9, 1e9, 1e9) | |
2007 | bv.velocity = mouse.Hit.lookVector *150 | |
2008 | bv.Parent = lb | |
2009 | lb.Touched:connect(function(hit) Damagefunc(hit,9,10,math.random(10,20),"Normal",RootPart,.2,1) end) | |
2010 | z.Scale = vt(1,1,1) | |
2011 | b.Transparency = 0 | |
2012 | b.CFrame = barrelhole.CFrame | |
2013 | for i = 0,1,0.3 do | |
2014 | swait() | |
2015 | z.Scale = z.Scale + vt(0.2,0.2,0.2) | |
2016 | b.Transparency = b.Transparency + 0.25 | |
2017 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
2018 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
2019 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
2020 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-50)), 0.3) | |
2021 | end | |
2022 | for i = 0,1,0.3 do | |
2023 | swait() | |
2024 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
2025 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
2026 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
2027 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3) | |
2028 | end | |
2029 | so("http://roblox.com/asset/?id=604905243",barrelhole,1,1) | |
2030 | local lb = Instance.new("Part") | |
2031 | lb.Parent = char | |
2032 | lb.Material = "Neon" | |
2033 | lb.Color = BrickColor.new("Royal purple").Color | |
2034 | lb.CanCollide = false | |
2035 | lb.Shape = "Ball" | |
2036 | lb.CFrame = barrelhole.CFrame | |
2037 | lb.Anchored = true | |
2038 | lb.Transparency = 0 | |
2039 | lb.Size = vt(0.6,0.6,0.6) | |
2040 | local thing = Instance.new("SpecialMesh",lb) | |
2041 | thing.MeshType = "Sphere" | |
2042 | local hitted = false | |
2043 | lb.Anchored = false | |
2044 | local bv = Instance.new("BodyVelocity") | |
2045 | bv.maxForce = Vector3.new(1e9, 1e9, 1e9) | |
2046 | bv.velocity = mouse.Hit.lookVector *150 | |
2047 | bv.Parent = lb | |
2048 | lb.Touched:connect(function(hit) Damagefunc(hit,9,10,math.random(10,20),"Normal",RootPart,.2,1) end) | |
2049 | z.Scale = vt(1,1,1) | |
2050 | b.CFrame = barrelhole.CFrame | |
2051 | b.Transparency = 0 | |
2052 | for i = 0,1,0.3 do | |
2053 | swait() | |
2054 | z.Scale = z.Scale + vt(0.2,0.2,0.2) | |
2055 | b.Transparency = b.Transparency + 0.25 | |
2056 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
2057 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
2058 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
2059 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-50)), 0.3) | |
2060 | end | |
2061 | attack = false | |
2062 | b:Destroy() | |
2063 | wait(10) | |
2064 | lb:Destroy() | |
2065 | lb:Destroy() | |
2066 | lb:Destroy() | |
2067 | end | |
2068 | ||
2069 | function stickybomb() | |
2070 | attack = true | |
2071 | for i = 0,2,0.1 do | |
2072 | swait() | |
2073 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
2074 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
2075 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
2076 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3) | |
2077 | end | |
2078 | so("http://roblox.com/asset/?id=604905243",barrelhole,1,1) | |
2079 | local lb = Instance.new("Part") | |
2080 | lb.Parent = char | |
2081 | lb.Material = "Neon" | |
2082 | lb.Color = BrickColor.new("Royal purple").Color | |
2083 | lb.CanCollide = false | |
2084 | lb.Shape = "Ball" | |
2085 | lb.CFrame = barrelhole.CFrame | |
2086 | lb.Anchored = true | |
2087 | lb.Transparency = 0 | |
2088 | lb.Size = vt(1,1,1) | |
2089 | local thing = Instance.new("SpecialMesh",lb) | |
2090 | thing.MeshType = "Sphere" | |
2091 | local b = Instance.new("Part") | |
2092 | b.Parent = char | |
2093 | b.Material = "Neon" | |
2094 | b.Color = BrickColor.new("Royal purple").Color | |
2095 | b.CanCollide = false | |
2096 | b.Shape = "Ball" | |
2097 | b.CFrame = barrelhole.CFrame | |
2098 | b.Anchored = true | |
2099 | b.Transparency = 0 | |
2100 | b.Size = vt(1,1,1) | |
2101 | local z = Instance.new("SpecialMesh",b) | |
2102 | z.MeshType = "Sphere" | |
2103 | local hitted = false | |
2104 | lb.Anchored = false | |
2105 | local bv = Instance.new("BodyVelocity") | |
2106 | bv.maxForce = Vector3.new(1e9, 1e9, 1e9) | |
2107 | bv.velocity = mouse.Hit.lookVector *150 | |
2108 | bv.Parent = lb | |
2109 | hitted = false | |
2110 | wait(0.00005) | |
2111 | lb.Touched:connect(function(hit) | |
2112 | if hitted == false then | |
2113 | hitted = true | |
2114 | lb.Anchored = true | |
2115 | so("http://roblox.com/asset/?id=604906197",lb,1,1) | |
2116 | Damagefunc(hit,1,3,-10,"Normal",RootPart,.2,1) | |
2117 | for i = 0, 4 do | |
2118 | lb.BrickColor = BrickColor.new("Really red") | |
2119 | wait(0.25) | |
2120 | lb.BrickColor = BrickColor.new("Royal purple") | |
2121 | wait(0.25) | |
2122 | end | |
2123 | lb.Transparency = 1 | |
2124 | so("http://roblox.com/asset/?id=412755503",lb,1,0.875) | |
2125 | local ba = Instance.new("Part") | |
2126 | ba.Parent = char | |
2127 | ba.Material = "Neon" | |
2128 | ba.Color = BrickColor.new("Royal purple").Color | |
2129 | ba.CanCollide = false | |
2130 | ba.Shape = "Ball" | |
2131 | ba.CFrame = lb.CFrame | |
2132 | ba.Anchored = true | |
2133 | ba.Transparency = 0 | |
2134 | ba.Size = vt(10,10,10) | |
2135 | ba.CFrame = lb.CFrame | |
2136 | local za = Instance.new("SpecialMesh",ba) | |
2137 | za.MeshType = "Sphere" | |
2138 | za.Scale = vt(0,0,0) | |
2139 | ba.Touched:connect(function(hit) | |
2140 | Damagefunc(hit,16,19,math.random(10,20),"Normal",RootPart,.2,1) | |
2141 | end) | |
2142 | for i = 0, 19 do | |
2143 | ba.Transparency = ba.Transparency + 0.05 | |
2144 | za.Scale = za.Scale + vt(0.25,0.25,0.25) | |
2145 | wait() | |
2146 | end | |
2147 | ba:Destroy() | |
2148 | lb:Destroy() | |
2149 | end | |
2150 | end) | |
2151 | for i = 0,2,0.1 do | |
2152 | swait() | |
2153 | z.Scale = z.Scale + vt(0.1,0.1,0.1) | |
2154 | b.Transparency = b.Transparency + 0.05 | |
2155 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
2156 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
2157 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
2158 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-50)), 0.3) | |
2159 | end | |
2160 | attack = false | |
2161 | b:Destroy() | |
2162 | wait(30) | |
2163 | lb:Destroy() | |
2164 | end | |
2165 | ||
2166 | function yep() | |
2167 | attack = true | |
2168 | for i = 0,2,0.1 do | |
2169 | swait() | |
2170 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
2171 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
2172 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
2173 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3) | |
2174 | end | |
2175 | so("http://roblox.com/asset/?id=178452221",barrelhole,1,1) | |
2176 | local lb = Instance.new("Part") | |
2177 | lb.Parent = char | |
2178 | lb.Material = "Neon" | |
2179 | lb.Color = BrickColor.new("Royal purple").Color | |
2180 | lb.CanCollide = false | |
2181 | lb.CFrame = barrelhole.CFrame + hed.CFrame.lookVector*37.5 | |
2182 | lb.Anchored = true | |
2183 | lb.Transparency = 0 | |
2184 | lb.Size = vt(2.5,75,2.5) | |
2185 | local zb = Instance.new("SpecialMesh",lb) | |
2186 | zb.MeshType = "Sphere" | |
2187 | zb.Scale = vt(1,1,1) | |
2188 | lb.Touched:connect(function(hit) | |
2189 | Damagefunc(hit,17,20,math.random(10,20),"Normal",RootPart,.2,1) | |
2190 | end) | |
2191 | for i = 0, 9 do | |
2192 | zb.Scale = zb.Scale + vt(0.1,0,0.1) | |
2193 | lb.CFrame = barrelhole.CFrame + hed.CFrame.lookVector*37.5 | |
2194 | lb.Transparency = lb.Transparency + 0.1 | |
2195 | wait() | |
2196 | end | |
2197 | lb:Destroy() | |
2198 | attack = false | |
2199 | end | |
2200 | ||
2201 | function test() | |
2202 | attack = true | |
2203 | for i = 0,2,0.1 do | |
2204 | swait() | |
2205 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
2206 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
2207 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
2208 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3) | |
2209 | end | |
2210 | so("http://roblox.com/asset/?id=412756262",barrelhole,1,0.95) | |
2211 | local ba = Instance.new("Part") | |
2212 | ba.Parent = char | |
2213 | ba.Material = "Neon" | |
2214 | ba.Color = BrickColor.new("Royal purple").Color | |
2215 | ba.CanCollide = false | |
2216 | ba.Shape = "Ball" | |
2217 | ba.CFrame = barrelhole.CFrame | |
2218 | ba.Anchored = true | |
2219 | ba.Transparency = 1 | |
2220 | ba.Size = vt(1,1,1) | |
2221 | ba.CFrame = barrelhole.CFrame | |
2222 | local za = Instance.new("SpecialMesh",ba) | |
2223 | za.MeshType = "Sphere" | |
2224 | za.Scale = vt(5,5,5) | |
2225 | for i = 0, 49 do | |
2226 | ba.CFrame = barrelhole.CFrame | |
2227 | ba.Transparency = ba.Transparency - 0.1 | |
2228 | za.Scale = za.Scale - vt(0.1,0.1,0.1) | |
2229 | wait() | |
2230 | end | |
2231 | so("http://roblox.com/asset/?id=412756199",barrelhole,1,0.95) | |
2232 | so("http://roblox.com/asset/?id=412756123",barrelhole,1,0.95) | |
2233 | so("http://roblox.com/asset/?id=412755564",barrelhole,1,0.95) | |
2234 | so("http://roblox.com/asset/?id=178452221",barrelhole,1,0.6) | |
2235 | so("http://roblox.com/asset/?id=87767777",barrelhole,1,1) | |
2236 | ba.Transparency = 0 | |
2237 | za.Scale = vt(5,5,5) | |
2238 | local seen = Instance.new("Sound",barrelhole) | |
2239 | seen.SoundId = "rbxassetid://445796828" | |
2240 | seen.Pitch = 0.75 | |
2241 | seen.Volume = 2.5 | |
2242 | seen.Looped = true | |
2243 | seen:Play() | |
2244 | local lb = Instance.new("Part") | |
2245 | lb.Parent = char | |
2246 | lb.Material = "Neon" | |
2247 | lb.Color = BrickColor.new("Royal purple").Color | |
2248 | lb.CanCollide = false | |
2249 | lb.CFrame = barrelhole.CFrame + hed.CFrame.lookVector*200 | |
2250 | lb.Anchored = true | |
2251 | lb.Transparency = 0 | |
2252 | lb.Size = vt(10,400,10) | |
2253 | local zb = Instance.new("SpecialMesh",lb) | |
2254 | zb.MeshType = "Sphere" | |
2255 | zb.Scale = vt(1,1,1) | |
2256 | lb.Touched:connect(function(hit) | |
2257 | Damagefunc(hit,22,28,math.random(10,20),"Normal",RootPart,.2,1) | |
2258 | end) | |
2259 | for i = 0, 99 do | |
2260 | ba.CFrame = barrelhole.CFrame | |
2261 | ba.Transparency = ba.Transparency + 0.025 | |
2262 | zb.Scale = zb.Scale + vt(0.01,0,0.01) | |
2263 | za.Scale = za.Scale + vt(1,1,1) | |
2264 | lb.CFrame = barrelhole.CFrame + hed.CFrame.lookVector*200 | |
2265 | wait() | |
2266 | end | |
2267 | for i = 0, 19 do | |
2268 | seen.Volume = seen.Volume - 0.1 | |
2269 | zb.Scale = zb.Scale - vt(0.05,0,0.05) | |
2270 | lb.CFrame = barrelhole.CFrame + hed.CFrame.lookVector*200 | |
2271 | lb.Transparency = lb.Transparency + 0.05 | |
2272 | wait() | |
2273 | end | |
2274 | seen:Destroy() | |
2275 | ba:Destroy() | |
2276 | lb:Destroy() | |
2277 | attack = false | |
2278 | end | |
2279 | ||
2280 | mouse.KeyDown:connect(function(k) | |
2281 | if k == "q" and gunmode == false then | |
2282 | gunmode = true | |
2283 | elseif k == "q" and gunmode == true then | |
2284 | gunmode = false | |
2285 | end | |
2286 | if k == "z" and gunmode == false and attack == false then | |
2287 | bladespin() | |
2288 | elseif k == "z" and gunmode == true and attack == false then | |
2289 | repeatbullet() | |
2290 | end | |
2291 | if k == "x" and gunmode == false and attack == false then | |
2292 | flashingslash() | |
2293 | elseif k == "x" and gunmode == true and attack == false then | |
2294 | stickybomb() | |
2295 | end | |
2296 | if k == "c" and gunmode == false and attack == false then | |
2297 | enerwave() | |
2298 | elseif k == "c" and gunmode == true and attack == false then | |
2299 | yep() | |
2300 | end | |
2301 | if k == "v" and gunmode == false and attack == false then | |
2302 | executionstab() | |
2303 | elseif k == "v" and gunmode == true and attack == false then | |
2304 | test() | |
2305 | end | |
2306 | end) | |
2307 | ||
2308 | function attackone() | |
2309 | attack=true | |
2310 | con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,7,9,math.random(10,20),"Normal",RootPart,.2,1) end) | |
2311 | for i=0,1,0.1 do | |
2312 | swait() | |
2313 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(90),0,math.rad(0)),.4) | |
2314 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
2315 | end | |
2316 | so("http://roblox.com/asset/?id=199150686",Hitbox,1,1) | |
2317 | for i=0,1,0.1 do | |
2318 | swait() | |
2319 | Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(-20)),.4) | |
2320 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(25)),.4) | |
2321 | RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(0),math.rad(-90),math.rad(-100))*angles(math.rad(-75),0,math.rad(0)),.4) | |
2322 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
2323 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4) | |
2324 | end | |
2325 | attack=false | |
2326 | con1:disconnect() | |
2327 | end | |
2328 | ||
2329 | function attacktwo() | |
2330 | attack=true | |
2331 | con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,7,9,math.random(10,20),"Normal",RootPart,.2,1) end) | |
2332 | for i=0,1,0.1 do | |
2333 | swait() | |
2334 | RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(-75),0,math.rad(0)),.4) | |
2335 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
2336 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4) | |
2337 | end | |
2338 | so("http://roblox.com/asset/?id=199146359",Hitbox,1,1) | |
2339 | for i=0,1,0.1 do | |
2340 | swait() | |
2341 | Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(40)),.4) | |
2342 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(-45)),.4) | |
2343 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(90),0,math.rad(0)),.4) | |
2344 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3) | |
2345 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-.5,-.5)*angles(math.rad(-35),math.rad(0),math.rad(0)),.4) | |
2346 | end | |
2347 | attack=false | |
2348 | con1:disconnect() | |
2349 | end | |
2350 | ||
2351 | function attackthree() | |
2352 | attack = true | |
2353 | for i = 0,2,0.1 do | |
2354 | swait() | |
2355 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
2356 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
2357 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
2358 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3) | |
2359 | end | |
2360 | so("http://roblox.com/asset/?id=604905243",barrelhole,1,1) | |
2361 | local lb = Instance.new("Part") | |
2362 | lb.Parent = char | |
2363 | lb.Material = "Neon" | |
2364 | lb.Color = BrickColor.new("Royal purple").Color | |
2365 | lb.CanCollide = false | |
2366 | lb.Shape = "Ball" | |
2367 | lb.CFrame = barrelhole.CFrame | |
2368 | lb.Anchored = true | |
2369 | lb.Transparency = 0 | |
2370 | lb.Size = vt(0.6,0.6,0.6) | |
2371 | local thing = Instance.new("SpecialMesh",lb) | |
2372 | thing.MeshType = "Sphere" | |
2373 | local b = Instance.new("Part") | |
2374 | b.Parent = char | |
2375 | b.Material = "Neon" | |
2376 | b.Color = BrickColor.new("Royal purple").Color | |
2377 | b.CanCollide = false | |
2378 | b.Shape = "Ball" | |
2379 | b.CFrame = barrelhole.CFrame | |
2380 | b.Anchored = true | |
2381 | b.Transparency = 0 | |
2382 | b.Size = vt(1,1,1) | |
2383 | local z = Instance.new("SpecialMesh",b) | |
2384 | z.MeshType = "Sphere" | |
2385 | local hitted = false | |
2386 | lb.Anchored = false | |
2387 | local bv = Instance.new("BodyVelocity") | |
2388 | bv.maxForce = Vector3.new(1e9, 1e9, 1e9) | |
2389 | bv.velocity = mouse.Hit.lookVector *150 | |
2390 | bv.Parent = lb | |
2391 | lb.Touched:connect(function(hit) Damagefunc(hit,9,12,math.random(10,20),"Normal",RootPart,.2,1) end) | |
2392 | for i = 0,2,0.1 do | |
2393 | swait() | |
2394 | z.Scale = z.Scale + vt(0.1,0.1,0.1) | |
2395 | b.Transparency = b.Transparency + 0.05 | |
2396 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
2397 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
2398 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
2399 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-50)), 0.3) | |
2400 | end | |
2401 | attack = false | |
2402 | b:Destroy() | |
2403 | wait(10) | |
2404 | lb:Destroy() | |
2405 | end | |
2406 | ||
2407 | function attackfour() | |
2408 | attack = true | |
2409 | for i = 0,2,0.1 do | |
2410 | swait() | |
2411 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(80)),.3) | |
2412 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-80)),.3) | |
2413 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
2414 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3) | |
2415 | end | |
2416 | so("http://roblox.com/asset/?id=199145204",barrelhole,1,1) | |
2417 | local con = barrel2.Touched:connect(function(hit) Damagefunc(hit,8,10,math.random(10,20),"Normal",RootPart,.2,1) end) | |
2418 | for i = 0,1,0.1 do | |
2419 | swait() | |
2420 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
2421 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
2422 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
2423 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3) | |
2424 | end | |
2425 | con:disconnect() | |
2426 | so("http://roblox.com/asset/?id=604905243",barrelhole,1.25,0.9) | |
2427 | local b = Instance.new("Part") | |
2428 | b.Parent = char | |
2429 | b.Material = "Neon" | |
2430 | b.Color = BrickColor.new("Royal purple").Color | |
2431 | b.CanCollide = false | |
2432 | b.Shape = "Ball" | |
2433 | b.CFrame = barrelhole.CFrame | |
2434 | b.Anchored = true | |
2435 | b.Transparency = 0 | |
2436 | b.Size = vt(5,5,5) | |
2437 | local z = Instance.new("SpecialMesh",b) | |
2438 | z.MeshType = "Sphere" | |
2439 | z.Scale = vt(0.25,0.25,0.25) | |
2440 | local bv = Instance.new("BodyVelocity") | |
2441 | bv.maxForce = Vector3.new(1e9, 1e9, 1e9) | |
2442 | bv.velocity = mouse.Hit.lookVector *150 | |
2443 | bv.Parent = lb | |
2444 | b.Touched:connect(function(hit) Damagefunc(hit,9,11,math.random(10,20),"Normal",RootPart,.2,1) end) | |
2445 | for i = 0,2,0.1 do | |
2446 | swait() | |
2447 | z.Scale = z.Scale + vt(0.15,0.15,0.15) | |
2448 | b.Transparency = b.Transparency + 0.05 | |
2449 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3) | |
2450 | Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3) | |
2451 | RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3) | |
2452 | LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-50)), 0.3) | |
2453 | end | |
2454 | attack = false | |
2455 | b:Destroy() | |
2456 | end | |
2457 | ||
2458 | idleanim=.4 | |
2459 | Humanoid.Animator.Parent = nil | |
2460 | while true do | |
2461 | swait() | |
2462 | sine = sine + change | |
2463 | local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude | |
2464 | local velderp=RootPart.Velocity.y | |
2465 | hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character) | |
2466 | if equipped==true or equipped==false then | |
2467 | if attack==false then | |
2468 | idle=idle+1 | |
2469 | else | |
2470 | idle=0 | |
2471 | end | |
2472 | if idle>=500 then | |
2473 | if attack==false then | |
2474 | --Sheath() | |
2475 | end | |
2476 | end | |
2477 | if RootPart.Velocity.y > 1 and hitfloor==nil then | |
2478 | Anim="Jump" | |
2479 | if attack==false then | |
2480 | Neck.C0=clerp(Neck.C0,necko*euler(-0.2,0,0),.3) | |
2481 | Neck.C1=clerp(Neck.C1,necko2*euler(0,0,0),.3) | |
2482 | RootJoint.C0=clerp(RootJoint.C0,RootCF*euler(0,0,0),.3) | |
2483 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(-.5,0,0.5)*angles(math.rad(-25),math.rad(105),math.rad(0)),.3) | |
2484 | RW.C1=clerp(LW.C1,cf(0,0.5,0)*euler(0,0,0),.3) | |
2485 | LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(-.5,0,-0.5),.3) | |
2486 | LW.C1=clerp(LW.C1,cf(0,0.5,0)*euler(0,0,0),.3) | |
2487 | RH.C0=clerp(RH.C0,cf(1,-1,-.3)*euler(-0.5,1.57,0)*euler(-.2,0,0),.2) | |
2488 | LH.C0=clerp(LH.C0,cf(-1,-1,-.3)*euler(-0.5,-1.57,0)*euler(-.2,0,0),.2) | |
2489 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3) | |
2490 | end | |
2491 | elseif RootPart.Velocity.y < -1 and hitfloor==nil then | |
2492 | Anim="Fall" | |
2493 | if attack==false then | |
2494 | Neck.C0=clerp(Neck.C0,necko*euler(0.4,0,0),.3) | |
2495 | Neck.C1=clerp(Neck.C1,necko2*euler(0,0,0),.3) | |
2496 | RootJoint.C0=clerp(RootJoint.C0,RootCF*euler(0,0,0),.3) | |
2497 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(0.3,0,0.2)*angles(math.rad(-25),math.rad(115),math.rad(0)),.3) | |
2498 | RW.C1=clerp(LW.C1,cf(0,0.5,0)*euler(0,0,0),.3) | |
2499 | LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(0.3,0,-0.2),.3) | |
2500 | LW.C1=clerp(LW.C1,cf(0,0.5,0)*euler(0,0,0),.3) | |
2501 | RH.C0=clerp(RH.C0,cf(1,-1,0)*euler(0.4,1.57,0),.2) | |
2502 | LH.C0=clerp(LH.C0,cf(-1,-1,0)*euler(-0.2,-1.57,0),.2) | |
2503 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3) | |
2504 | end | |
2505 | elseif torvel<1 and hitfloor~=nil then | |
2506 | Anim="Idle" | |
2507 | RH.C0=clerp(RH.C0,cf(1,-1 - 0.05 * math.cos(sine / 32),0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0)),.3) | |
2508 | LH.C0=clerp(LH.C0,cf(-1,-1 - 0.05 * math.cos(sine / 32),0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0)),.3) | |
2509 | if attack==false then | |
2510 | if gunmode == true then | |
2511 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0 + 0.05 * math.cos(sine / 32))*angles(math.rad(0),math.rad(0),math.rad(-60)),.3) | |
2512 | Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(60)),.3) | |
2513 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-35),math.rad(90),math.rad(0))*angles(math.rad(-25 + 5 * math.cos(sine / 32)),math.rad(15),math.rad(0)),.3) | |
2514 | LW.C0=clerp(LW.C0,cf(-1.35,0.5,0)*angles(math.rad(180),math.rad(30),math.rad(-90)),.3) | |
2515 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3) | |
2516 | elseif gunmode == false then | |
2517 | RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0 + 0.05 * math.cos(sine / 32))*angles(math.rad(0),math.rad(0),math.rad(-35)),.3) | |
2518 | Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(35)),.3) | |
2519 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-35),math.rad(90),math.rad(0))*angles(math.rad(-25 + 5 * math.cos(sine / 32)),math.rad(15),math.rad(0)),.3) | |
2520 | LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(-25 + 2.5 * math.cos(sine / 32))),.3) | |
2521 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3) | |
2522 | end | |
2523 | end | |
2524 | elseif torvel>2 and torvel<22 and hitfloor~=nil then | |
2525 | Anim="Walk" | |
2526 | RH.C0=clerp(RH.C0,cf(1,-1 - 0.05 * math.cos(sine / 32),0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0 + 50 * math.cos(sine / 6))),.3) | |
2527 | LH.C0=clerp(LH.C0,cf(-1,-1 - 0.05 * math.cos(sine / 32),0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0 + 50 * math.cos(sine / 6))),.3) | |
2528 | if attack==false then | |
2529 | if gunmode == false then | |
2530 | --RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3) | |
2531 | --Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(0)),.3) | |
2532 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0 + 0.05 * math.cos(sine / 32))* angles(math.rad(5),math.rad(0),math.rad(0)),.3) | |
2533 | Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(0)),.3) | |
2534 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-55),math.rad(90),math.rad(0))*angles(math.rad(-15),math.rad(0),math.rad(0)),.3) | |
2535 | LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(-15),math.rad(0),math.rad(-25)),.3) | |
2536 | --RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3) | |
2537 | --LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.3) | |
2538 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3) | |
2539 | elseif gunmode == true then | |
2540 | --RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3) | |
2541 | --Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(0)),.3) | |
2542 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0 + 0.05 * math.cos(sine / 32))* angles(math.rad(5),math.rad(0),math.rad(0)),.3) | |
2543 | Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(0)),.3) | |
2544 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-55),math.rad(90),math.rad(0))*angles(math.rad(-15),math.rad(0),math.rad(0)),.3) | |
2545 | LW.C0=clerp(LW.C0,cf(-1.5,0.45,0)*angles(math.rad(55),math.rad(0),math.rad(25)),.3) | |
2546 | --RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3) | |
2547 | --LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.3) | |
2548 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3) | |
2549 | end | |
2550 | end | |
2551 | elseif torvel>=22 and hitfloor~=nil then | |
2552 | Anim="Run" | |
2553 | RH.C0=clerp(RH.C0,cf(1,-1 - 0.05 * math.cos(sine / 32),0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0 + 75 * math.cos(sine / 3))),.3) | |
2554 | LH.C0=clerp(LH.C0,cf(-1,-1 - 0.05 * math.cos(sine / 32),0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0 + 75 * math.cos(sine / 3))),.3) | |
2555 | if attack==false then | |
2556 | RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,-0.25 + 0.05 * math.cos(sine / 32))* angles(math.rad(35),math.rad(0),math.rad(0)),.3) | |
2557 | Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-5),math.rad(0),math.rad(0)),.3) | |
2558 | RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-50),math.rad(-60),math.rad(25)),.3) | |
2559 | LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(-50),math.rad(0),math.rad(-25)),.3) | |
2560 | HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3) | |
2561 | end | |
2562 | end | |
2563 | end | |
2564 | end |