· 7 years ago · Oct 26, 2018, 05:34 AM
1--[[ {"Why i have released it"}
2
3Well if you don't know why, i can release things if they are completed or not and also for a different reason.
4 ^
5 |
6 v
7Like if someone want's to showcase scripts or if someone is a good editor and want's to edit scripts like this.
8 |
9So, this is the answer to the question ^ this.
10
11I Also attend to remove pastebens if they have errors or bugs and reupload them again as fixed.
12
13
14]]
15
16
17
18print("Note : This was pretty much made by anime accept for the FE Converter below the {'2 --'} things and this is made in beta, also spawn killing is not allowed, but the keys are k for kill, v for another pose, r for another pose, t for no pose, future keys : {'y for another pose'} ok and if you don't know what specimen is then ima put the link for the model over here, https://web.roblox.com/library/573606602/Spookys-Jumpscare-Mansion-Specimen; ok next note, k is kinda op and also you can edit this script just do not steal scripts from pastebin as stealing could make you a skid or a script kiddy since you can't script at all then you just steal scripts or recolor the scripts.")
19
20
21print("Specimen")
22print("This script has been converted to FE by iPxter")
23
24
25if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
26local Player,Mouse,mouse,UserInputService,ContextActionService = owner
27do
28 print("FE Compatibility code by Mokiros | Translated to FE by iPxter")
29 script.Parent = Player.Character
30
31 --RemoteEvent for communicating
32 local Event = Instance.new("RemoteEvent")
33 Event.Name = "UserInput_Event"
34
35 --Fake event to make stuff like Mouse.KeyDown work
36 local function fakeEvent()
37 local t = {_fakeEvent=true,Connect=function(self,f)self.Function=f end}
38 t.connect = t.Connect
39 return t
40 end
41
42 --Creating fake input objects with fake variables
43 local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
44 local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
45 local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
46 CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
47 end}
48 --Merged 2 functions into one by checking amount of arguments
49 CAS.UnbindAction = CAS.BindAction
50
51 --This function will trigger the events that have been :Connect()'ed
52 local function te(self,ev,...)
53 local t = m[ev]
54 if t and t._fakeEvent and t.Function then
55 t.Function(...)
56 end
57 end
58 m.TrigEvent = te
59 UIS.TrigEvent = te
60
61 Event.OnServerEvent:Connect(function(plr,io)
62 if plr~=Player then return end
63 if io.isMouse then
64 m.Target = io.Target
65 m.Hit = io.Hit
66 else
67 local b = io.UserInputState == Enum.UserInputState.Begin
68 if io.UserInputType == Enum.UserInputType.MouseButton1 then
69 return m:TrigEvent(b and "Button1Down" or "Button1Up")
70 end
71 for _,t in pairs(CAS.Actions) do
72 for _,k in pairs(t.Keys) do
73 if k==io.KeyCode then
74 t.Function(t.Name,io.UserInputState,io)
75 end
76 end
77 end
78 m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
79 UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
80 end
81 end)
82 Event.Parent = NLS([==[
83 local Player = game:GetService("Players").LocalPlayer
84 local Event = script:WaitForChild("UserInput_Event")
85
86 local UIS = game:GetService("UserInputService")
87 local input = function(io,a)
88 if a then return end
89 --Since InputObject is a client-side instance, we create and pass table instead
90 Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState})
91 end
92 UIS.InputBegan:Connect(input)
93 UIS.InputEnded:Connect(input)
94
95 local Mouse = Player:GetMouse()
96 local h,t
97 --Give the server mouse data 30 times every second, but only if the values changed
98 --If player is not moving their mouse, client won't fire events
99 while wait(1/30) do
100 if h~=Mouse.Hit or t~=Mouse.Target then
101 h,t=Mouse.Hit,Mouse.Target
102 Event:FireServer({isMouse=true,Target=t,Hit=h})
103 end
104 end]==],Player.Character)
105 Mouse,mouse,UserInputService,ContextActionService = m,m,UIS,CAS
106end
107
108--Specimen 4
109
110player = owner
111
112parts = {} -- < A Table for parts so when it gets the parts which is for a anti-death thing
113motor6D = {} -- < If you wan't to get the parts motor3D which can be useful for the anti-death
114char= player.Character
115rigtype = ""
116Sound0 = Instance.new("Sound")
117Sound0.Parent = char
118Sound0.Looped = true
119Sound0.SoundId = "rbxassetid://493019769"
120Sound0.Volume = 2
121Sound0:Play()
122cam = workspace.CurrentCamera
123welds1 = {} -- Gets the first weld
124welds2 = {} -- Gets the second weld
125wait(0.1) -- Wait to make sure the humanoid instance appears before the script starts to function
126humanoid = char:FindFirstChild("Humanoid")
127animation = char:FindFirstChild("Animate")
128rigtype = humanoid.RigType
129animation:Destroy()
130for _,c in pairs(char:GetChildren()) do
131if c == "Part" then
132table.insert(parts,c)
133end
134end
135
136for _,m in pairs(parts) do
137if m.ClassName == "Motor" or m.ClassName == "Motor6D" then
138table.insert(motor6D,m)
139end
140end
141
142--Since they both got motor and now parts, we should make a humanoid death after the spooky stuff which is the scripts name
143
144function clonemotors(motor,Part) -- Clones Motors Function with the args
145wait(0.1) -- Another wait so that the instance exists before the script functions
146
147if motor:IsA("Motor6D") or motor:IsA("Motor") then -- To make sure it is motor or motor6D
148mot =motor:Clone()
149mot.Parent = Part
150end
151end
152Model0 = Instance.new("Model")
153Part1 = Instance.new("Part")
154SpecialMesh2 = Instance.new("SpecialMesh")
155ManualWeld3 = Instance.new("ManualWeld")
156Part4 = Instance.new("Part")
157ManualWeld5 = Instance.new("ManualWeld")
158Part6 = Instance.new("Part")
159SpotLight7 = Instance.new("SpotLight")
160ManualWeld8 = Instance.new("ManualWeld")
161Part9 = Instance.new("Part")
162ManualWeld10 = Instance.new("ManualWeld")
163Part11 = Instance.new("Part")
164ManualWeld12 = Instance.new("ManualWeld")
165Part13 = Instance.new("Part")
166ManualWeld14 = Instance.new("ManualWeld")
167Part15 = Instance.new("Part")
168ManualWeld16 = Instance.new("ManualWeld")
169Part17 = Instance.new("Part")
170ManualWeld18 = Instance.new("ManualWeld")
171Part19 = Instance.new("Part")
172SpecialMesh20 = Instance.new("SpecialMesh")
173ManualWeld21 = Instance.new("ManualWeld")
174Part22 = Instance.new("Part")
175SpecialMesh23 = Instance.new("SpecialMesh")
176Part24 = Instance.new("Part")
177ManualWeld25 = Instance.new("ManualWeld")
178Part26 = Instance.new("Part")
179SpecialMesh27 = Instance.new("SpecialMesh")
180ManualWeld28 = Instance.new("ManualWeld")
181Part29 = Instance.new("Part")
182SpecialMesh30 = Instance.new("SpecialMesh")
183ManualWeld31 = Instance.new("ManualWeld")
184Part32 = Instance.new("Part")
185ManualWeld33 = Instance.new("ManualWeld")
186Part34 = Instance.new("Part")
187ManualWeld35 = Instance.new("ManualWeld")
188Part36 = Instance.new("Part")
189ManualWeld37 = Instance.new("ManualWeld")
190Part38 = Instance.new("Part")
191ManualWeld39 = Instance.new("ManualWeld")
192Part40 = Instance.new("Part")
193SpecialMesh41 = Instance.new("SpecialMesh")
194ParticleEmitter42 = Instance.new("ParticleEmitter")
195ManualWeld43 = Instance.new("ManualWeld")
196Part44 = Instance.new("Part")
197ManualWeld45 = Instance.new("ManualWeld")
198Part46 = Instance.new("Part")
199ManualWeld47 = Instance.new("ManualWeld")
200Part48 = Instance.new("Part")
201SpecialMesh49 = Instance.new("SpecialMesh")
202ManualWeld50 = Instance.new("ManualWeld")
203Part51 = Instance.new("Part")
204ManualWeld52 = Instance.new("ManualWeld")
205Part53 = Instance.new("Part")
206ManualWeld54 = Instance.new("ManualWeld")
207Part55 = Instance.new("Part")
208ManualWeld56 = Instance.new("ManualWeld")
209Part57 = Instance.new("Part")
210ManualWeld58 = Instance.new("ManualWeld")
211Part59 = Instance.new("Part")
212ManualWeld60 = Instance.new("ManualWeld")
213Part61 = Instance.new("Part")
214ManualWeld62 = Instance.new("ManualWeld")
215Part63 = Instance.new("Part")
216ManualWeld64 = Instance.new("ManualWeld")
217Part65 = Instance.new("Part")
218SpecialMesh66 = Instance.new("SpecialMesh")
219Part67 = Instance.new("Part")
220ManualWeld68 = Instance.new("ManualWeld")
221Model0.Name = "Spooky Knife"
222Model0.Parent = char
223Part1.Name = "ww"
224Part1.Parent = Model0
225Part1.CFrame = CFrame.new(14.8114786, 2.05818295, 14.8772011, 1.00000048, 0, 0, 0, -1, -8.74227766e-08, 0, 8.74228192e-08, -1.00000048)
226Part1.Orientation = Vector3.new(0, 180, 180)
227Part1.Position = Vector3.new(14.8114786, 2.05818295, 14.8772011)
228Part1.Rotation = Vector3.new(180, 0, 0)
229Part1.Color = Color3.new(0.458824, 0, 0)
230Part1.Size = Vector3.new(0.0500000007, 0.127000004, 0.150000006)
231Part1.BottomSurface = Enum.SurfaceType.Smooth
232Part1.BrickColor = BrickColor.new("Maroon")
233Part1.Material = Enum.Material.Glass
234Part1.TopSurface = Enum.SurfaceType.Smooth
235Part1.brickColor = BrickColor.new("Maroon")
236SpecialMesh2.Parent = Part1
237SpecialMesh2.Scale = Vector3.new(0.699999988, 1, 1)
238SpecialMesh2.MeshType = Enum.MeshType.Wedge
239ManualWeld3.Name = "Weld"
240ManualWeld3.Parent = Part1
241ManualWeld3.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 8.74227766e-08, 0, -8.74227766e-08, -1)
242ManualWeld3.C1 = CFrame.new(0.000277519226, -0.0335476398, 1.26708651, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
243ManualWeld3.Part0 = Part1
244ManualWeld3.Part1 = Part46
245ManualWeld3.part1 = Part46
246Part4.Parent = Model0
247Part4.CFrame = CFrame.new(14.8113394, 2.07901788, 14.6925001, 1.00000024, 0, 0, 0, 0.866025388, -0.5, 0, 0.500000119, 0.866025567)
248Part4.Orientation = Vector3.new(30, 0, 0)
249Part4.Position = Vector3.new(14.8113394, 2.07901788, 14.6925001)
250Part4.Rotation = Vector3.new(30, 0, 0)
251Part4.Size = Vector3.new(0.0500000007, 0.120000064, 0.0900000036)
252Part4.BottomSurface = Enum.SurfaceType.Smooth
253Part4.Material = Enum.Material.Metal
254Part4.TopSurface = Enum.SurfaceType.Smooth
255ManualWeld5.Name = "Weld"
256ManualWeld5.Parent = Part4
257ManualWeld5.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.866025388, 0.5, 0, -0.5, 0.866025388)
258ManualWeld5.C1 = CFrame.new(0.000138282776, -0.0127127171, 1.08238602, 1, 0, 0, 0, 1, 0, 0, 0, 1)
259ManualWeld5.Part0 = Part4
260ManualWeld5.Part1 = Part46
261ManualWeld5.part1 = Part46
262Part6.Parent = Model0
263Part6.CFrame = CFrame.new(14.9206829, 2.0998528, 14.4531679, -1.19209318e-07, 0, 1.00000036, 0, 1, 0, -1.00000036, 0, -1.19209318e-07)
264Part6.Orientation = Vector3.new(0, 90, 0)
265Part6.Position = Vector3.new(14.9206829, 2.0998528, 14.4531679)
266Part6.Rotation = Vector3.new(0, 90, 0)
267Part6.Color = Color3.new(0.803922, 0.803922, 0.803922)
268Part6.Size = Vector3.new(0.0500000007, 0.109999992, 0.0500000007)
269Part6.BottomSurface = Enum.SurfaceType.Smooth
270Part6.BrickColor = BrickColor.new("Mid gray")
271Part6.Material = Enum.Material.Neon
272Part6.TopSurface = Enum.SurfaceType.Smooth
273Part6.brickColor = BrickColor.new("Mid gray")
274Part6.Shape = Enum.PartType.Cylinder
275SpotLight7.Parent = Part6
276SpotLight7.Face = Enum.NormalId.Left
277SpotLight7.Brightness = 32
278ManualWeld8.Name = "Weld"
279ManualWeld8.Parent = Part6
280ManualWeld8.C0 = CFrame.new(0, 0, 0, -1.1920929e-07, 0, -1.00000012, 0, 1, 0, 1.00000012, 0, -1.1920929e-07)
281ManualWeld8.C1 = CFrame.new(0.109481812, 0.00812220573, 0.843053818, 1, 0, 0, 0, 1, 0, 0, 0, 1)
282ManualWeld8.Part0 = Part6
283ManualWeld8.Part1 = Part46
284ManualWeld8.part1 = Part46
285Part9.Parent = Model0
286Part9.CFrame = CFrame.new(14.9206829, 2.0998528, 14.4631681, -1.19209318e-07, 0, 1.00000036, 0, 1, 0, -1.00000036, 0, -1.19209318e-07)
287Part9.Orientation = Vector3.new(0, 90, 0)
288Part9.Position = Vector3.new(14.9206829, 2.0998528, 14.4631681)
289Part9.Rotation = Vector3.new(0, 90, 0)
290Part9.Color = Color3.new(0.388235, 0.372549, 0.384314)
291Part9.Transparency = 0.60000002384186
292Part9.Size = Vector3.new(0.0700000003, 0.109999992, 0.0700000003)
293Part9.BottomSurface = Enum.SurfaceType.Smooth
294Part9.BrickColor = BrickColor.new("Dark stone grey")
295Part9.Material = Enum.Material.Glass
296Part9.TopSurface = Enum.SurfaceType.Smooth
297Part9.brickColor = BrickColor.new("Dark stone grey")
298Part9.Shape = Enum.PartType.Cylinder
299ManualWeld10.Name = "Weld"
300ManualWeld10.Parent = Part9
301ManualWeld10.C0 = CFrame.new(0, 0, 0, -1.1920929e-07, 0, -1.00000012, 0, 1, 0, 1.00000012, 0, -1.1920929e-07)
302ManualWeld10.C1 = CFrame.new(0.109481812, 0.00812220573, 0.853054047, 1, 0, 0, 0, 1, 0, 0, 0, 1)
303ManualWeld10.Part0 = Part9
304ManualWeld10.Part1 = Part46
305ManualWeld10.part1 = Part46
306Part11.Parent = Model0
307Part11.CFrame = CFrame.new(14.926342, 2.09847951, 14.1035299, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
308Part11.Position = Vector3.new(14.926342, 2.09847951, 14.1035299)
309Part11.Size = Vector3.new(0.140000015, 0.129999995, 0.279999882)
310Part11.BottomSurface = Enum.SurfaceType.Smooth
311Part11.Material = Enum.Material.Metal
312Part11.TopSurface = Enum.SurfaceType.Smooth
313ManualWeld12.Name = "Weld"
314ManualWeld12.Parent = Part11
315ManualWeld12.C1 = CFrame.new(0.115140915, 0.00674885511, 0.493415833, 1, 0, 0, 0, 1, 0, 0, 0, 1)
316ManualWeld12.Part0 = Part11
317ManualWeld12.Part1 = Part46
318ManualWeld12.part1 = Part46
319Part13.Parent = Model0
320Part13.CFrame = CFrame.new(14.8113394, 2.09347939, 14.14853, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
321Part13.Position = Vector3.new(14.8113394, 2.09347939, 14.14853)
322Part13.Size = Vector3.new(0.0700000077, 0.14000006, 0.49000001)
323Part13.BottomSurface = Enum.SurfaceType.Smooth
324Part13.Material = Enum.Material.Metal
325Part13.TopSurface = Enum.SurfaceType.Smooth
326ManualWeld14.Name = "Weld"
327ManualWeld14.Parent = Part13
328ManualWeld14.C1 = CFrame.new(0.000138282776, 0.00174880028, 0.538415432, 1, 0, 0, 0, 1, 0, 0, 0, 1)
329ManualWeld14.Part0 = Part13
330ManualWeld14.Part1 = Part46
331ManualWeld14.part1 = Part46
332Part15.Parent = Model0
333Part15.CFrame = CFrame.new(14.8113394, 2.09347939, 14.5135298, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
334Part15.Position = Vector3.new(14.8113394, 2.09347939, 14.5135298)
335Part15.Size = Vector3.new(0.0500000007, 0.120000064, 0.339999974)
336Part15.BottomSurface = Enum.SurfaceType.Smooth
337Part15.Material = Enum.Material.Metal
338Part15.TopSurface = Enum.SurfaceType.Smooth
339ManualWeld16.Name = "Weld"
340ManualWeld16.Parent = Part15
341ManualWeld16.C1 = CFrame.new(0.000138282776, 0.00174880028, 0.90341568, 1, 0, 0, 0, 1, 0, 0, 0, 1)
342ManualWeld16.Part0 = Part15
343ManualWeld16.Part1 = Part46
344ManualWeld16.part1 = Part46
345Part17.Parent = Model0
346Part17.CFrame = CFrame.new(14.8113394, 2.09347939, 14.0885286, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
347Part17.Position = Vector3.new(14.8113394, 2.09347939, 14.0885286)
348Part17.Color = Color3.new(0.588235, 0.403922, 0.4)
349Part17.Size = Vector3.new(0.158999994, 0.273999989, 0.0500000007)
350Part17.BottomSurface = Enum.SurfaceType.Smooth
351Part17.BrickColor = BrickColor.new("Copper")
352Part17.Material = Enum.Material.Metal
353Part17.TopSurface = Enum.SurfaceType.Smooth
354Part17.brickColor = BrickColor.new("Copper")
355ManualWeld18.Name = "Weld"
356ManualWeld18.Parent = Part17
357ManualWeld18.C1 = CFrame.new(0.000138282776, 0.00174880028, 0.478414536, 1, 0, 0, 0, 1, 0, 0, 0, 1)
358ManualWeld18.Part0 = Part17
359ManualWeld18.Part1 = Part46
360ManualWeld18.part1 = Part46
361Part19.Parent = Model0
362Part19.CFrame = CFrame.new(14.8113394, 2.10955644, 14.7214718, 1.00000072, 0, 0, 0, 1, 0, 0, 0, 1.00000072)
363Part19.Position = Vector3.new(14.8113394, 2.10955644, 14.7214718)
364Part19.Color = Color3.new(0.458824, 0, 0)
365Part19.Size = Vector3.new(0.0799999982, 0.0700000003, 0.290000051)
366Part19.BottomSurface = Enum.SurfaceType.Smooth
367Part19.BrickColor = BrickColor.new("Maroon")
368Part19.Material = Enum.Material.Glass
369Part19.TopSurface = Enum.SurfaceType.Smooth
370Part19.brickColor = BrickColor.new("Maroon")
371SpecialMesh20.Parent = Part19
372SpecialMesh20.Scale = Vector3.new(0.5, 0.839999974, 1)
373SpecialMesh20.MeshType = Enum.MeshType.Brick
374ManualWeld21.Name = "Weld"
375ManualWeld21.Parent = Part19
376ManualWeld21.C0 = CFrame.new(0, 0, 0, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
377ManualWeld21.C1 = CFrame.new(0.000138282776, 0.0178257823, 1.11135721, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
378ManualWeld21.Part0 = Part19
379ManualWeld21.Part1 = Part46
380ManualWeld21.part1 = Part46
381Part22.Parent = Model0
382Part22.CFrame = CFrame.new(14.8113394, 2.09347939, 14.901824, 1, 0, 0, 0, -1, 0, 0, 0, -1)
383Part22.Orientation = Vector3.new(0, 180, 180)
384Part22.Position = Vector3.new(14.8113394, 2.09347939, 14.901824)
385Part22.Rotation = Vector3.new(-180, 0, 0)
386Part22.Color = Color3.new(0.458824, 0, 0)
387Part22.Size = Vector3.new(0.0799999982, 0.0600000024, 0.0799999982)
388Part22.BottomSurface = Enum.SurfaceType.Smooth
389Part22.BrickColor = BrickColor.new("Maroon")
390Part22.Material = Enum.Material.Glass
391Part22.TopSurface = Enum.SurfaceType.Smooth
392Part22.brickColor = BrickColor.new("Maroon")
393SpecialMesh23.Parent = Part22
394SpecialMesh23.MeshType = Enum.MeshType.Wedge
395Part24.Parent = Model0
396Part24.CFrame = CFrame.new(14.8113394, 2.06455636, 14.7664719, 1.00000072, 0, 0, 0, 1, 0, 0, 0, 1.00000072)
397Part24.Position = Vector3.new(14.8113394, 2.06455636, 14.7664719)
398Part24.Size = Vector3.new(0.0500000007, 0.120000064, 0.13000001)
399Part24.BottomSurface = Enum.SurfaceType.Smooth
400Part24.Material = Enum.Material.Metal
401Part24.TopSurface = Enum.SurfaceType.Smooth
402ManualWeld25.Name = "Weld"
403ManualWeld25.Parent = Part24
404ManualWeld25.C0 = CFrame.new(0, 0, 0, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
405ManualWeld25.C1 = CFrame.new(0.000138282776, -0.0271742344, 1.15635729, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
406ManualWeld25.Part0 = Part24
407ManualWeld25.Part1 = Part46
408ManualWeld25.part1 = Part46
409Part26.Name = "ww"
410Part26.Parent = Model0
411Part26.CFrame = CFrame.new(14.8114786, 2.09668303, 14.8772011, 1.00000048, 0, 0, 0, -1, -8.74227766e-08, 0, 8.74228192e-08, -1.00000048)
412Part26.Orientation = Vector3.new(0, 180, 180)
413Part26.Position = Vector3.new(14.8114786, 2.09668303, 14.8772011)
414Part26.Rotation = Vector3.new(180, 0, 0)
415Part26.Color = Color3.new(0.458824, 0, 0)
416Part26.Size = Vector3.new(0.0500000007, 0.0500000007, 0.150000006)
417Part26.BottomSurface = Enum.SurfaceType.Smooth
418Part26.BrickColor = BrickColor.new("Maroon")
419Part26.Material = Enum.Material.Glass
420Part26.TopSurface = Enum.SurfaceType.Smooth
421Part26.brickColor = BrickColor.new("Maroon")
422SpecialMesh27.Parent = Part26
423SpecialMesh27.Scale = Vector3.new(0.699999988, 1, 1)
424SpecialMesh27.MeshType = Enum.MeshType.Wedge
425ManualWeld28.Name = "Weld"
426ManualWeld28.Parent = Part26
427ManualWeld28.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 8.74227766e-08, 0, -8.74227766e-08, -1)
428ManualWeld28.C1 = CFrame.new(0.000277519226, 0.00495237112, 1.26708651, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
429ManualWeld28.Part0 = Part26
430ManualWeld28.Part1 = Part46
431ManualWeld28.part1 = Part46
432Part29.Parent = Model0
433Part29.CFrame = CFrame.new(14.8063402, 2.1330564, 14.8614702, 1.00000024, 0, 0, 0, -1, -8.74227766e-08, 0, 8.74227979e-08, -1.00000024)
434Part29.Orientation = Vector3.new(0, 180, 180)
435Part29.Position = Vector3.new(14.8063402, 2.1330564, 14.8614702)
436Part29.Rotation = Vector3.new(180, 0, 0)
437Part29.Color = Color3.new(0.458824, 0, 0)
438Part29.Size = Vector3.new(0.11999999, 0.0545454547, 0.185454547)
439Part29.BottomSurface = Enum.SurfaceType.Smooth
440Part29.BrickColor = BrickColor.new("Maroon")
441Part29.Material = Enum.Material.Glass
442Part29.TopSurface = Enum.SurfaceType.Smooth
443Part29.brickColor = BrickColor.new("Maroon")
444SpecialMesh30.Parent = Part29
445SpecialMesh30.MeshType = Enum.MeshType.Sphere
446ManualWeld31.Name = "Weld"
447ManualWeld31.Parent = Part29
448ManualWeld31.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 8.74227766e-08, 0, -8.74227766e-08, -1)
449ManualWeld31.C1 = CFrame.new(-0.00486087799, 0.0413258076, 1.25135565, 1, 0, 0, 0, 1, 0, 0, 0, 1)
450ManualWeld31.Part0 = Part29
451ManualWeld31.Part1 = Part46
452ManualWeld31.part1 = Part46
453Part32.Parent = Model0
454Part32.CFrame = CFrame.new(14.9206829, 2.0998528, 14.2498446, -1.19209318e-07, 0, 1.00000036, 0, 1, 0, -1.00000036, 0, -1.19209318e-07)
455Part32.Orientation = Vector3.new(0, 90, 0)
456Part32.Position = Vector3.new(14.9206829, 2.0998528, 14.2498446)
457Part32.Rotation = Vector3.new(0, 90, 0)
458Part32.Color = Color3.new(0.388235, 0.372549, 0.384314)
459Part32.Size = Vector3.new(0.450000465, 0.109999992, 0.180000335)
460Part32.BottomSurface = Enum.SurfaceType.Smooth
461Part32.BrickColor = BrickColor.new("Dark stone grey")
462Part32.Material = Enum.Material.Metal
463Part32.TopSurface = Enum.SurfaceType.Smooth
464Part32.brickColor = BrickColor.new("Dark stone grey")
465Part32.Shape = Enum.PartType.Cylinder
466ManualWeld33.Name = "Weld"
467ManualWeld33.Parent = Part32
468ManualWeld33.C0 = CFrame.new(0, 0, 0, -1.1920929e-07, 0, -1.00000012, 0, 1, 0, 1.00000012, 0, -1.1920929e-07)
469ManualWeld33.C1 = CFrame.new(0.109481812, 0.00812220573, 0.639729977, 1, 0, 0, 0, 1, 0, 0, 0, 1)
470ManualWeld33.Part0 = Part32
471ManualWeld33.Part1 = Part46
472ManualWeld33.part1 = Part46
473Part34.Parent = Model0
474Part34.CFrame = CFrame.new(14.8113394, 2.09347939, 14.3341732, 1.00000048, 0, 0, 0, 1, 0, 0, 0, 1.00000048)
475Part34.Position = Vector3.new(14.8113394, 2.09347939, 14.3341732)
476Part34.Color = Color3.new(0.588235, 0.403922, 0.4)
477Part34.Size = Vector3.new(0.159400031, 0.273600101, 0.0500000007)
478Part34.BottomSurface = Enum.SurfaceType.Smooth
479Part34.BrickColor = BrickColor.new("Copper")
480Part34.Material = Enum.Material.Metal
481Part34.TopSurface = Enum.SurfaceType.Smooth
482Part34.brickColor = BrickColor.new("Copper")
483ManualWeld35.Name = "Weld"
484ManualWeld35.Parent = Part34
485ManualWeld35.C1 = CFrame.new(0.000138282776, 0.00174880028, 0.724058628, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
486ManualWeld35.Part0 = Part34
487ManualWeld35.Part1 = Part46
488ManualWeld35.part1 = Part46
489Part36.Parent = Model0
490Part36.CFrame = CFrame.new(14.8113403, 2.09347939, 14.529171, 1.00000048, 0, 0, 0, 0.987941027, 0.154830992, 0, -0.154831052, 0.987941504)
491Part36.Orientation = Vector3.new(-8.90999985, 0, 0)
492Part36.Position = Vector3.new(14.8113403, 2.09347939, 14.529171)
493Part36.Rotation = Vector3.new(-8.90999985, 0, 0)
494Part36.Color = Color3.new(0.588235, 0.403922, 0.4)
495Part36.Size = Vector3.new(0.0700000003, 0.140000001, 0.0700000003)
496Part36.BottomSurface = Enum.SurfaceType.Smooth
497Part36.BrickColor = BrickColor.new("Copper")
498Part36.Material = Enum.Material.Fabric
499Part36.TopSurface = Enum.SurfaceType.Smooth
500Part36.brickColor = BrickColor.new("Copper")
501ManualWeld37.Name = "Weld"
502ManualWeld37.Parent = Part36
503ManualWeld37.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.987941027, -0.154830992, 0, 0.154830992, 0.987941027)
504ManualWeld37.C1 = CFrame.new(0.00013923645, 0.00174880028, 0.919056416, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
505ManualWeld37.Part0 = Part36
506ManualWeld37.Part1 = Part46
507ManualWeld37.part1 = Part46
508Part38.Parent = Model0
509Part38.CFrame = CFrame.new(14.8113394, 2.09347939, 13.399169, 1.00000048, 0, 0, 0, 1, 0, 0, 0, 1.00000048)
510Part38.Position = Vector3.new(14.8113394, 2.09347939, 13.399169)
511Part38.Color = Color3.new(0.588235, 0.403922, 0.4)
512Part38.Size = Vector3.new(0.109999999, 0.194000036, 0.100000001)
513Part38.BottomSurface = Enum.SurfaceType.Smooth
514Part38.BrickColor = BrickColor.new("Copper")
515Part38.Material = Enum.Material.Metal
516Part38.TopSurface = Enum.SurfaceType.Smooth
517Part38.brickColor = BrickColor.new("Copper")
518ManualWeld39.Name = "Weld"
519ManualWeld39.Parent = Part38
520ManualWeld39.C1 = CFrame.new(0.000138282776, 0.00174880028, -0.210944653, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
521ManualWeld39.Part0 = Part38
522ManualWeld39.Part1 = Part46
523ManualWeld39.part1 = Part46
524Part40.Name = "2"
525Part40.Parent = Model0
526Part40.CFrame = CFrame.new(14.8112011, 2.06780767, 14.7430563, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
527Part40.Position = Vector3.new(14.8112011, 2.06780767, 14.7430563)
528Part40.Color = Color3.new(0.458824, 0, 0)
529Part40.Transparency = 1
530Part40.Size = Vector3.new(0.0799999982, 0.0700000003, 0.26000005)
531Part40.BottomSurface = Enum.SurfaceType.Smooth
532Part40.BrickColor = BrickColor.new("Maroon")
533Part40.Material = Enum.Material.Glass
534Part40.TopSurface = Enum.SurfaceType.Smooth
535Part40.brickColor = BrickColor.new("Maroon")
536SpecialMesh41.Parent = Part40
537SpecialMesh41.Scale = Vector3.new(0.5, 0.839999974, 1)
538SpecialMesh41.MeshType = Enum.MeshType.Brick
539ParticleEmitter42.Parent = Part40
540ParticleEmitter42.Rotation = NumberRange.new(1, 1)
541ParticleEmitter42.Color = ColorSequence.new(Color3.new(0.803922, 0.976471, 1),Color3.new(1, 1, 1))
542ParticleEmitter42.LightEmission = 0.10000000149012
543ParticleEmitter42.Texture = "http://www.roblox.com/asset/?id=154750284"
544ParticleEmitter42.Transparency = NumberSequence.new(0,0.2677595615387,0)
545ParticleEmitter42.ZOffset = 0.20000000298023
546ParticleEmitter42.Size = NumberSequence.new(0.05464494228363,0,0,0,0,0,0,0,0,0)
547ParticleEmitter42.Acceleration = Vector3.new(0, -1, 0)
548ParticleEmitter42.EmissionDirection = Enum.NormalId.Bottom
549ParticleEmitter42.Lifetime = NumberRange.new(1000, 1000)
550ParticleEmitter42.Rate = 12
551ParticleEmitter42.RotSpeed = NumberRange.new(60, 60)
552ParticleEmitter42.SpreadAngle = Vector2.new(5, 5)
553ParticleEmitter42.VelocitySpread = 5
554ManualWeld43.Name = "Weld"
555ManualWeld43.Parent = Part40
556ManualWeld43.C1 = CFrame.new(0, -0.0239230394, 1.13294172, 1, 0, 0, 0, 1, 0, 0, 0, 1)
557ManualWeld43.Part0 = Part40
558ManualWeld43.Part1 = Part46
559ManualWeld43.part1 = Part46
560Part44.Parent = Model0
561Part44.CFrame = CFrame.new(14.8113394, 2.09347939, 14.1041698, 1.00000048, 0, 0, 0, 1, 0, 0, 0, 1.00000048)
562Part44.Position = Vector3.new(14.8113394, 2.09347939, 14.1041698)
563Part44.Color = Color3.new(0.388235, 0.372549, 0.384314)
564Part44.Size = Vector3.new(0.0900000036, 0.240000054, 0.529999912)
565Part44.BottomSurface = Enum.SurfaceType.Smooth
566Part44.BrickColor = BrickColor.new("Dark stone grey")
567Part44.Material = Enum.Material.Fabric
568Part44.TopSurface = Enum.SurfaceType.Smooth
569Part44.brickColor = BrickColor.new("Dark stone grey")
570ManualWeld45.Name = "Weld"
571ManualWeld45.Parent = Part44
572ManualWeld45.C1 = CFrame.new(0.000138282776, 0.00174880028, 0.494055748, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
573ManualWeld45.Part0 = Part44
574ManualWeld45.Part1 = Part46
575ManualWeld45.part1 = Part46
576Part46.Name = "Handle"
577Part46.Parent = Model0
578Part46.CFrame = CFrame.new(14.8112011, 2.09173059, 13.6101141, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
579Part46.Position = Vector3.new(14.8112011, 2.09173059, 13.6101141)
580Part46.Size = Vector3.new(0.0700000003, 0.17400001, 0.439999938)
581Part46.BottomSurface = Enum.SurfaceType.Smooth
582Part46.Material = Enum.Material.Metal
583Part46.TopSurface = Enum.SurfaceType.Smooth
584ManualWeld47.Name = "Weld"
585ManualWeld47.Parent = Part46
586ManualWeld47.C0 = CFrame.new(0, 0, 0, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
587ManualWeld47.C1 = CFrame.new(0.0560150146, -0.908272505, -0.356087685, -1, 0, 0, 0, 1, 0, 0, 0, -1)
588ManualWeld47.Part0 = Part46
589ManualWeld47.Part1 = char["Right Arm"]
590ManualWeld47.part1 = char["Right Arm"]
591Part48.Parent = Model0
592Part48.CFrame = CFrame.new(14.8114786, 2.05818295, 14.872201, 1.00000048, 0, 0, 0, -1, -8.74227766e-08, 0, 8.74228192e-08, -1.00000048)
593Part48.Orientation = Vector3.new(0, 180, 180)
594Part48.Position = Vector3.new(14.8114786, 2.05818295, 14.872201)
595Part48.Rotation = Vector3.new(180, 0, 0)
596Part48.Size = Vector3.new(0.0500000007, 0.127000004, 0.140000001)
597Part48.BottomSurface = Enum.SurfaceType.Smooth
598Part48.Material = Enum.Material.Metal
599Part48.TopSurface = Enum.SurfaceType.Smooth
600SpecialMesh49.Parent = Part48
601SpecialMesh49.MeshType = Enum.MeshType.Wedge
602ManualWeld50.Name = "Weld"
603ManualWeld50.Parent = Part48
604ManualWeld50.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 8.74227766e-08, 0, -8.74227766e-08, -1)
605ManualWeld50.C1 = CFrame.new(0.000277519226, -0.0335476398, 1.26208639, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
606ManualWeld50.Part0 = Part48
607ManualWeld50.Part1 = Part46
608ManualWeld50.part1 = Part46
609Part51.Parent = Model0
610Part51.CFrame = CFrame.new(14.9414806, 2.0921061, 14.0992584, 1.00000048, 0, 0, 0, 1, 0, 0, 0, 1.00000048)
611Part51.Position = Vector3.new(14.9414806, 2.0921061, 14.0992584)
612Part51.Size = Vector3.new(0.170000017, 0.0500000007, 0.249999896)
613Part51.BottomSurface = Enum.SurfaceType.Smooth
614Part51.Material = Enum.Material.Metal
615Part51.TopSurface = Enum.SurfaceType.Smooth
616ManualWeld52.Name = "Weld"
617ManualWeld52.Parent = Part51
618ManualWeld52.C1 = CFrame.new(0.130279541, 0.000375449657, 0.489143848, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
619ManualWeld52.Part0 = Part51
620ManualWeld52.Part1 = Part46
621ManualWeld52.part1 = Part46
622Part53.Parent = Model0
623Part53.CFrame = CFrame.new(14.8114777, 2.08710599, 13.879261, 1.00000048, 0, 0, 0, 1, 0, 0, 0, 1.00000048)
624Part53.Position = Vector3.new(14.8114777, 2.08710599, 13.879261)
625Part53.Color = Color3.new(0.588235, 0.403922, 0.4)
626Part53.Size = Vector3.new(0.158999994, 0.273999989, 0.0500000007)
627Part53.BottomSurface = Enum.SurfaceType.Smooth
628Part53.BrickColor = BrickColor.new("Copper")
629Part53.Material = Enum.Material.Metal
630Part53.TopSurface = Enum.SurfaceType.Smooth
631Part53.brickColor = BrickColor.new("Copper")
632ManualWeld54.Name = "Weld"
633ManualWeld54.Parent = Part53
634ManualWeld54.C1 = CFrame.new(0.000276565552, -0.00462460518, 0.269146442, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
635ManualWeld54.Part0 = Part53
636ManualWeld54.Part1 = Part46
637ManualWeld54.part1 = Part46
638Part55.Parent = Model0
639Part55.CFrame = CFrame.new(14.8114777, 1.99938798, 14.2285452, 1.00000048, 0, 0, 0, 0.866025388, 0.5, 0, -0.500000238, 0.866025746)
640Part55.Orientation = Vector3.new(-30, 0, 0)
641Part55.Position = Vector3.new(14.8114777, 1.99938798, 14.2285452)
642Part55.Rotation = Vector3.new(-30, 0, 0)
643Part55.Size = Vector3.new(0.0500000007, 0.159999996, 0.159999847)
644Part55.BottomSurface = Enum.SurfaceType.Smooth
645Part55.Material = Enum.Material.Metal
646Part55.TopSurface = Enum.SurfaceType.Smooth
647ManualWeld56.Name = "Weld"
648ManualWeld56.Parent = Part55
649ManualWeld56.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.866025388, -0.5, 0, 0.5, 0.866025388)
650ManualWeld56.C1 = CFrame.new(0.000276565552, -0.0923425555, 0.618430614, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
651ManualWeld56.Part0 = Part55
652ManualWeld56.Part1 = Part46
653ManualWeld56.part1 = Part46
654Part57.Parent = Model0
655Part57.CFrame = CFrame.new(14.8114777, 2.01938796, 13.5253372, 1.00000048, 0, 0, 0, 0.866025388, -0.5, 0, 0.500000238, 0.866025746)
656Part57.Orientation = Vector3.new(30, 0, 0)
657Part57.Position = Vector3.new(14.8114777, 2.01938796, 13.5253372)
658Part57.Rotation = Vector3.new(30, 0, 0)
659Part57.Size = Vector3.new(0.0500000007, 0.159999996, 0.24000001)
660Part57.BottomSurface = Enum.SurfaceType.Smooth
661Part57.Material = Enum.Material.Metal
662Part57.TopSurface = Enum.SurfaceType.Smooth
663ManualWeld58.Name = "Weld"
664ManualWeld58.Parent = Part57
665ManualWeld58.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.866025388, 0.5, 0, -0.5, 0.866025388)
666ManualWeld58.C1 = CFrame.new(0.000276565552, -0.0723425746, -0.0847764015, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
667ManualWeld58.Part0 = Part57
668ManualWeld58.Part1 = Part46
669ManualWeld58.part1 = Part46
670Part59.Parent = Model0
671Part59.CFrame = CFrame.new(14.8864794, 2.0921061, 14.1542616, 1.00000048, 0, 0, 0, 1, 0, 0, 0, 1.00000048)
672Part59.Position = Vector3.new(14.8864794, 2.0921061, 14.1542616)
673Part59.Size = Vector3.new(0.0599999987, 0.0900000259, 0.639999747)
674Part59.BottomSurface = Enum.SurfaceType.Smooth
675Part59.Material = Enum.Material.Metal
676Part59.TopSurface = Enum.SurfaceType.Smooth
677ManualWeld60.Name = "Weld"
678ManualWeld60.Parent = Part59
679ManualWeld60.C1 = CFrame.new(0.0752782822, 0.000375449657, 0.544147491, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
680ManualWeld60.Part0 = Part59
681ManualWeld60.Part1 = Part46
682ManualWeld60.part1 = Part46
683Part61.Parent = Model0
684Part61.CFrame = CFrame.new(14.8814793, 2.0921061, 14.0992584, 1.00000048, 0, 0, 0, 1, 0, 0, 0, 1.00000048)
685Part61.Position = Vector3.new(14.8814793, 2.0921061, 14.0992584)
686Part61.Size = Vector3.new(0.0500000007, 0.170000032, 0.409999907)
687Part61.BottomSurface = Enum.SurfaceType.Smooth
688Part61.Material = Enum.Material.Metal
689Part61.TopSurface = Enum.SurfaceType.Smooth
690ManualWeld62.Name = "Weld"
691ManualWeld62.Parent = Part61
692ManualWeld62.C1 = CFrame.new(0.0702781677, 0.000375449657, 0.489143848, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
693ManualWeld62.Part0 = Part61
694ManualWeld62.Part1 = Part46
695ManualWeld62.part1 = Part46
696Part63.Parent = Model0
697Part63.CFrame = CFrame.new(14.8112011, 1.97473061, 13.8901186, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
698Part63.Position = Vector3.new(14.8112011, 1.97473061, 13.8901186)
699Part63.Size = Vector3.new(0.0500000007, 0.159999996, 0.609999895)
700Part63.BottomSurface = Enum.SurfaceType.Smooth
701Part63.Material = Enum.Material.Metal
702Part63.TopSurface = Enum.SurfaceType.Smooth
703ManualWeld64.Name = "Weld"
704ManualWeld64.Parent = Part63
705ManualWeld64.C1 = CFrame.new(0, -0.116999984, 0.280004025, 1, 0, 0, 0, 1, 0, 0, 0, 1)
706ManualWeld64.Part0 = Part63
707ManualWeld64.Part1 = Part46
708ManualWeld64.part1 = Part46
709Part65.Parent = Model0
710Part65.CFrame = CFrame.new(14.8113394, 2.09347939, 14.901824, 1, 0, 0, 0, -0.902408123, -0.430882335, 0, 0.430882335, -0.902408123)
711Part65.Orientation = Vector3.new(25.5199986, 180, 180)
712Part65.Position = Vector3.new(14.8113394, 2.09347939, 14.901824)
713Part65.Rotation = Vector3.new(154.479996, 0, 0)
714Part65.Color = Color3.new(0.458824, 0, 0)
715Part65.Size = Vector3.new(0.120000005, 0.0600000024, 0.0600000024)
716Part65.BottomSurface = Enum.SurfaceType.Smooth
717Part65.BrickColor = BrickColor.new("Maroon")
718Part65.Material = Enum.Material.Glass
719Part65.TopSurface = Enum.SurfaceType.Smooth
720Part65.brickColor = BrickColor.new("Maroon")
721SpecialMesh66.Parent = Part65
722SpecialMesh66.MeshType = Enum.MeshType.Sphere
723Part67.Parent = Model0
724Part67.CFrame = CFrame.new(14.8113394, 2.09347939, 13.818532, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024)
725Part67.Position = Vector3.new(14.8113394, 2.09347939, 13.818532)
726Part67.Color = Color3.new(0.588235, 0.403922, 0.4)
727Part67.Size = Vector3.new(0.119000003, 0.254000008, 0.0899999961)
728Part67.BottomSurface = Enum.SurfaceType.Smooth
729Part67.BrickColor = BrickColor.new("Copper")
730Part67.Material = Enum.Material.Metal
731Part67.TopSurface = Enum.SurfaceType.Smooth
732Part67.brickColor = BrickColor.new("Copper")
733ManualWeld68.Name = "Weld"
734ManualWeld68.Parent = Part67
735ManualWeld68.C1 = CFrame.new(0.000138282776, 0.00174880028, 0.208417892, 1, 0, 0, 0, 1, 0, 0, 0, 1)
736ManualWeld68.Part0 = Part67
737ManualWeld68.Part1 = Part46
738ManualWeld68.part1 = Part46
739
740
741humanoid.MaxHealth = "inf"
742humanoid.Health = "inf"
743humanoid.WalkSpeed = 0
744animation:Destroy()
745local ManualWeld5 = Instance.new("ManualWeld")
746local ManualWeld6 = Instance.new("ManualWeld")
747local ManualWeld2 = Instance.new("ManualWeld")
748local ManualWeld4 = Instance.new("ManualWeld")
749
750mouse.KeyUp:Connect(function(k)
751if k == "v" then
752ManualWeld4.Name = "Weld"
753ManualWeld4.Parent = char["Right Arm"]
754ManualWeld4.C0 = CFrame.new(0, 0, 0, -0.963871837, -0.258573949, -0.0639576539, -0.26527071, 0.910068691, 0.318443567, -0.0241353493, 0.323904902, -0.945781708)
755ManualWeld4.C1 = CFrame.new(1.34930038, -0.0854098797, 0.158224106, -1, 0, 0, 0, 1, 0, 0, 0, -1)
756ManualWeld4.Part0 = char["Right Arm"]
757ManualWeld4.Part1 = char.HumanoidRootPart
758ManualWeld4.part1 = char.HumanoidRootPart
759
760ManualWeld2.Name = "Weld"
761ManualWeld2.Parent = char["Left Arm"]
762ManualWeld2.C0 = CFrame.new(0, 0, 0, -0.986418366, -0.0108327856, 0.163894728, 0, 0.997822762, 0.0659520924, -0.164252341, 0.0650563538, -0.984270692)
763ManualWeld2.C1 = CFrame.new(-1.49320984, 0.00541639328, 0.0819473267, -1, 0, 0, 0, 1, 0, 0, 0, -1)
764ManualWeld2.Part0 = char["Left Arm"]
765ManualWeld2.Part1 = char.HumanoidRootPart
766ManualWeld2.part1 = char.HumanoidRootPart
767
768
769ManualWeld5.Part1 = nil
770ManualWeld6.Part1 = nil
771ManualWeld5.Part0 = nil
772ManualWeld6.Part0 = nil
773
774elseif k == "r" then
775ManualWeld2.Part1 = nil
776ManualWeld4.Part1 = nil
777ManualWeld2.Part0 = nil
778ManualWeld4.Part0 = nil
779
780ManualWeld5.Name = "Weld"
781ManualWeld5.Parent = char["Right Arm"]
782ManualWeld5.C0 = CFrame.new(0, 0, 0, -0.898753166, -0.373142391, -0.230233714, -0.214851215, 0.832540631, -0.510602772, 0.38220644, -0.409439832, -0.828418553)
783ManualWeld5.C1 = CFrame.new(-1.55680275, 0.270300865, -0.370418549, -1, 0, 0, 0, 1, 0, 0, 0, -1)
784ManualWeld5.Part0 = char["Right Arm"]
785ManualWeld5.Part1 = char.HumanoidRootPart
786ManualWeld5.part1 = char.HumanoidRootPart
787ManualWeld6.Name = "Weld"
788ManualWeld6.Parent = char["Left Arm"]
789ManualWeld6.C0 = CFrame.new(0, 0, 0, -0.573177695, 0.316111892, 0.756003082, 0.482932031, 0.875657856, 0, -0.66200006, 0.365098089, -0.654568076)
790ManualWeld6.C1 = CFrame.new(1.52805519, 0.220227003, -0.378001213, -1, 0, 0, 0, 1, 0, 0, 0, -1)
791ManualWeld6.Part0 = char["Left Arm"]
792ManualWeld6.Part1 = char.HumanoidRootPart
793ManualWeld6.part1 = char.HumanoidRootPart
794
795elseif k == "t" then
796ManualWeld5.Part1 = nil
797ManualWeld6.Part1 = nil
798ManualWeld5.Part0 = nil
799ManualWeld6.Part0 = nil
800ManualWeld2.Part1 = nil
801ManualWeld4.Part1 = nil
802ManualWeld2.Part0 = nil
803ManualWeld4.Part0 = nil
804elseif k == "k" then
805
806
807attack = true
808function findNearestTorso(pos)
809 local list = game.Workspace:children()
810 local torso = nil
811 local dist = 12
812 local temp = nil
813 local human = nil
814 local temp2 = nil
815 for x = 1, #list do
816 temp2 = list[x]
817 if (temp2.className == "Model") and (temp2 ~= script.Parent) then
818 temp = temp2:findFirstChild("Torso")
819 human = temp2:findFirstChild("Humanoid")
820 if (temp ~= nil) and (human ~= nil) and (human.Health > 0) then
821 if (temp.Position - pos).magnitude < dist then
822 torso = temp
823 dist = (temp.Position - pos).magnitude
824 end
825 end
826 end
827 end
828 return torso
829end
830a = 21
831
832
833
834 local target = findNearestTorso(script.Parent.Torso.Position,a)
835 if target ~= nil then
836Sound0 = Instance.new("Sound")
837Sound0.Name = "DeathSound"
838Sound0.Parent = char
839Sound0.SoundId = "rbxassetid://456539140"
840Sound0.Volume = 3
841Sound0:Play()
842 hum = target.Parent.Humanoid
843 hum:TakeDamage(9999e9999)
844 a = hum.Parent.Head
845 a:BreakJoints()
846
847end
848
849
850
851 end
852
853end)
854
855mouse.Button1Down:Connect(function()
856char:MoveTo(mouse.Hit.Position)
857
858
859wait(0.0001)
860
861end)
862
863humanoid.Died:Connect(function()
864local p = nil
865
866a = humanoid:Clone()
867a.Parent = char
868humanoid:Destroy()
869
870
871a.Parent = char
872
873for _,c2 in pairs(parts) do
874c2:Destroy()
875wait(0.1)
876p = c2:Clone()
877p.Parent = char
878char:MakeJoints(p)
879return p
880end
881
882
883
884
885
886
887
888
889
890
891
892
893
894end)
895
896
897while wait() do
898humanoid.WalkSpeed = 0
899cam.CFrame = CFrame.new(char.HumanoidRootPart.CFrame.p)
900end