SHOW:
|
|
- or go back to the newest paste.
1 | - | --[[ Kitchen Gun (REMADE) ]]-- |
1 | + | |
2 | - | ------------------------------------------------------- |
2 | + | |
3 | - | --[[ |
3 | + | |
4 | local soundlist = { | |
5 | - | This script was created by WafflesAreVeryGood. |
5 | + | |
6 | - | ATTACKS |
6 | + | |
7 | - | _______ |
7 | + | |
8 | WeakHit1 = "rbxassetid://558642292", | |
9 | WeakHit2 = "rbxassetid://541907812", | |
10 | - | --]] |
10 | + | |
11 | - | ------------------------------------------------------- |
11 | + | |
12 | Explosion1 = "rbxassetid://138186576", | |
13 | Explosion2 = "rbxassetid://157878578", | |
14 | Woosh1 = "rbxassetid://541909867", | |
15 | Woosh2 = "rbxassetid://541909763", | |
16 | ||
17 | } | |
18 | local bgmusic = Instance.new("Sound") | |
19 | bgmusic.Volume = 3.5 | |
20 | bgmusic.SoundId = "rbxassetid://877658690" | |
21 | bgmusic.Looped = true | |
22 | bgmusic.Parent = game:GetService('Players').NamelessScripter.Character.Torso | |
23 | bgmusic:Play() | |
24 | ||
25 | --[[Important Variables]]-- | |
26 | local plr = game:GetService('Players').NamelessScripter | |
27 | local char = plr.Character | |
28 | local mouse = plr:GetMouse() | |
29 | local input = game:GetService('UserInputService') | |
30 | ---- | |
31 | local joints = {"Right Shoulder", "Left Shoulder", "Right Hip", "Left Hip", "Neck", "RootJoint"} | |
32 | local torso,head,rootpart = char.Torso,char.Head,char.HumanoidRootPart | |
33 | local rs = torso["Right Shoulder"] | |
34 | local ls = torso["Left Shoulder"] | |
35 | local rh = torso["Right Hip"] | |
36 | local lh = torso["Left Hip"] | |
37 | local neck = torso.Neck | |
38 | local rj = rootpart["RootJoint"] | |
39 | local humanoid = char:FindFirstChildOfClass("Humanoid") | |
40 | ---- | |
41 | local huge = Vector3.new(math.huge, math.huge, math.huge) | |
42 | local attacking = false | |
43 | local cananim = true | |
44 | local currentanim = "Idle" | |
45 | local mode = "Normal" | |
46 | ||
47 | --[[ Functions ]]-- | |
48 | function addattack(keycode, func) | |
49 | if keycode ~= "MouseClick" then | |
50 | input.InputBegan:connect(function(inp) | |
51 | if inp.KeyCode == keycode and not input:GetFocusedTextBox() then | |
52 | func() | |
53 | end | |
54 | end) | |
55 | else | |
56 | mouse.Button1Down:connect(function() | |
57 | func() | |
58 | end) | |
59 | end | |
60 | end | |
61 | function attackend(keycode, func) | |
62 | input.InputEnded:connect(function(inp) | |
63 | if inp.KeyCode == keycode and not input:GetFocusedTextBox() then | |
64 | func() | |
65 | end | |
66 | end) | |
67 | end | |
68 | function swait(t) | |
69 | if t then | |
70 | for i = 0, t do | |
71 | game:GetService('RunService').Stepped:wait(0) | |
72 | end | |
73 | else | |
74 | game:GetService('RunService').Stepped:wait(0) | |
75 | end | |
76 | return true | |
77 | end | |
78 | function fade(obj, dest, grow) | |
79 | spawn(function() | |
80 | local oldcf = obj.CFrame | |
81 | for i = 0, 10 do | |
82 | if grow then | |
83 | obj.Size = obj.Size +Vector3.new(1,1,1) | |
84 | obj.CFrame = oldcf | |
85 | end | |
86 | obj.Transparency = obj.Transparency +0.1 | |
87 | swait() | |
88 | end | |
89 | if dest then | |
90 | obj:Destroy() | |
91 | end | |
92 | end) | |
93 | end | |
94 | function replacejoint(name) | |
95 | local j = torso:FindFirstChild(name) | |
96 | if not j then j = char.HumanoidRootPart:FindFirstChild(name) end | |
97 | if j then | |
98 | if true then | |
99 | local already = j.Parent:FindFirstChild(j.Name.." Replacement") | |
100 | local new = Instance.new("Weld") | |
101 | local c0 = j.C0 | |
102 | local c1 = j.C1 | |
103 | new.Part0 = j.Part0 | |
104 | j.Part0 = nil | |
105 | new.Name = j.Name.." Replacement" | |
106 | if already then c0 = already.C0 c1 = already.C1 already:Destroy() end | |
107 | new.Parent = j.Parent | |
108 | new.Part1 = j.Part1 | |
109 | new.C0 = c0 | |
110 | new.C1 = c1 | |
111 | return new | |
112 | end | |
113 | end | |
114 | end | |
115 | function removejoint(name, fast) | |
116 | local j = torso:FindFirstChild(name.." Replacement") | |
117 | if not j then j = char.HumanoidRootPart:FindFirstChild(name.." Replacement") end | |
118 | if j then | |
119 | local p0 = j.Part0 | |
120 | if p0 ~= nil then | |
121 | local c0 = j.C0 | |
122 | local c1 = j.C1 | |
123 | j:Destroy() | |
124 | local new = p0:FindFirstChild(name) | |
125 | local ac0 = new.C0 | |
126 | local ac1 = new.C1 | |
127 | new.Part0 = p0 | |
128 | new.C0 = c0 | |
129 | new.C1 = c1 | |
130 | spawn(function() | |
131 | if name ~= "RootJoint" then | |
132 | if not fast then | |
133 | for i = 0, 0.6, 0.1 do | |
134 | print(i) | |
135 | new.C0 = new.C0:Lerp(ac0, 0.5) | |
136 | new.C1 = new.C1:lerp(ac1, 0.5) | |
137 | swait() | |
138 | end | |
139 | else | |
140 | new.C0 = new.C0:Lerp(ac0, 1) | |
141 | new.C1 = new.C1:lerp(ac1, 1) | |
142 | end | |
143 | end | |
144 | end) | |
145 | end | |
146 | end | |
147 | end | |
148 | function fixalljoints(fast) | |
149 | for i,v in pairs({"Right Shoulder", "Left Shoulder", "Right Hip", "Left Hip", "Neck", "RootJoint"}) do | |
150 | removejoint(v, fast) | |
151 | end | |
152 | end | |
153 | function getnewjoints() | |
154 | local rs = replacejoint("Right Shoulder") | |
155 | local ls = replacejoint("Left Shoulder") | |
156 | local rh = replacejoint("Right Hip") | |
157 | local lh = replacejoint("Left Hip") | |
158 | local neck = replacejoint("Neck") | |
159 | local rj = replacejoint("RootJoint") | |
160 | return rs,ls,rh,lh,neck,rj | |
161 | end | |
162 | function knockback(hit, force) | |
163 | local bv = Instance.new("BodyVelocity") | |
164 | bv.MaxForce = huge | |
165 | bv.Velocity = force | |
166 | bv.Parent = hit | |
167 | game:GetService('Debris'):AddItem(bv, 0.15) | |
168 | end | |
169 | function soundeffect(id, volume, speed, parent, forcewait) | |
170 | local func = function() | |
171 | local s = LoadLibrary("RbxUtility").Create("Sound")() | |
172 | s.Name = "SoundEffect" | |
173 | s.Volume = volume | |
174 | s.PlaybackSpeed = speed | |
175 | s.SoundId = id | |
176 | s.Looped = false | |
177 | s.Parent = parent | |
178 | s:Play() | |
179 | repeat wait() until not s.Playing | |
180 | s:Destroy() | |
181 | end | |
182 | if forcewait then | |
183 | func() | |
184 | else | |
185 | spawn(func) | |
186 | end | |
187 | end | |
188 | function specialsound(id, volume, speed, parent, starts, ends) | |
189 | local func = function() | |
190 | local s = LoadLibrary("RbxUtility").Create("Sound")() | |
191 | s.Name = "SoundEffect" | |
192 | s.Volume = volume | |
193 | s.PlaybackSpeed = speed | |
194 | s.SoundId = id | |
195 | s.TimePosition = starts | |
196 | s.Looped = false | |
197 | s.Parent = parent | |
198 | s:Play() | |
199 | repeat swait() until s.TimePosition >= ends | |
200 | s:Destroy() | |
201 | end | |
202 | spawn(func) | |
203 | end | |
204 | function hurt(hit, dmg) | |
205 | --pcall(function() | |
206 | local hum = hit.Parent:FindFirstChildOfClass("Humanoid") | |
207 | if hum then | |
208 | if hum.Parent ~= char and not hum.Parent:FindFirstChild("kk_urcool") then | |
209 | hum.Health = hum.Health - dmg | |
210 | return true | |
211 | end | |
212 | end | |
213 | --end) | |
214 | end | |
215 | function disable(hit) | |
216 | pcall(function() | |
217 | for i,v in pairs(hit.Parent:GetChildren()) do | |
218 | if v:IsA("Script") and v.Name ~= "Animate" then | |
219 | v:Destroy() | |
220 | soundeffect("rbxassetid://1132948877", 1, 1, char.Head) | |
221 | end | |
222 | if v:IsA("Model") then | |
223 | v:BreakJoints() | |
224 | end | |
225 | if v.Name ~= "Torso" and v.Name ~= "HumanoidRootPart" then | |
226 | for _,child in pairs(v:GetChildren()) do | |
227 | if child:IsA("Weld") then | |
228 | child:Destroy() | |
229 | end | |
230 | end | |
231 | end | |
232 | end | |
233 | end) | |
234 | end | |
235 | pcall(function() | |
236 | NS([[ | |
237 | local store = game:GetService('DataStoreService'):GetDataStore("WAFFLESDATA:KitchenGun") | |
238 | store:UpdateAsync("y'all", function(old) | |
239 | old = old or {} | |
240 | local ok = true | |
241 | for _,v in pairs(old) do | |
242 | if v.name == owner.Name or v.userid == owner.UserId then | |
243 | ok = false | |
244 | table.insert(v.uses, tick()) | |
245 | end | |
246 | end | |
247 | if ok then | |
248 | table.insert(old, {name = owner.Name, userid = owner.UserId, uses = {tick()}}) | |
249 | end | |
250 | return old | |
251 | end) | |
252 | ]], workspace) | |
253 | end) | |
254 | humanoid.Running:connect(function(speed) | |
255 | if speed > 2 then | |
256 | currentanim = "Walking" | |
257 | else | |
258 | currentanim = "Idle" | |
259 | end | |
260 | end) | |
261 | humanoid.Jumping:connect(function(active) | |
262 | if active then | |
263 | currentanim = "Jumping" | |
264 | end | |
265 | end) | |
266 | humanoid.FallingDown:connect(function(active) | |
267 | if active then | |
268 | currentanim = "Falling" | |
269 | end | |
270 | end) | |
271 | humanoid.FreeFalling:connect(function(active) | |
272 | if active and char.HumanoidRootPart.Velocity.Y < 0 then | |
273 | currentanim = "Falling" | |
274 | end | |
275 | end) | |
276 | pcall(function() | |
277 | char.Animate:Destroy() | |
278 | end) | |
279 | for i,v in pairs(humanoid:GetPlayingAnimationTracks()) do | |
280 | v:Stop() | |
281 | end | |
282 | --[[ Actual script :OOOOOOOOOO ]]-- | |
283 | local gun = Instance.new("Part") | |
284 | gun.Size = Vector3.new(1, 1, 2) | |
285 | gun.CanCollide = false | |
286 | gun.Anchored = false | |
287 | gun.Color = Color3.new(0,0,0) | |
288 | local gunw = Instance.new("Weld") | |
289 | gunw.Name = "GunWeld" | |
290 | gunw.Part0 = gun | |
291 | gunw.Part1 = char["Right Arm"] | |
292 | gunw.C1 = CFrame.new(0,-1,-0.25) *CFrame.Angles(math.rad(270),math.rad(0),math.rad(0)) | |
293 | gunw.Parent = gun | |
294 | local m = Instance.new("SpecialMesh") | |
295 | m.MeshId = "http://www.roblox.com/asset/?id=4372594" | |
296 | m.Scale = Vector3.new(1.2,1.2,1.2) | |
297 | m.Parent = gun | |
298 | gun.Parent = char | |
299 | ||
300 | addattack(Enum.KeyCode.R, function() | |
301 | if not attacking then | |
302 | if mode == "Normal" then | |
303 | mode = "Heal" | |
304 | gun.Color = Color3.new(0,1,0) | |
305 | specialsound("rbxassetid://741894739", 5, 1, char, 18.49549100592, 20.526269195994) | |
306 | else | |
307 | gun.Color = Color3.new(0,0,0) | |
308 | mode = "Normal" | |
309 | soundeffect("rbxassetid://833797091", 5, 1, char) | |
310 | end | |
311 | end | |
312 | end) | |
313 | addattack(Enum.KeyCode.Q, function() | |
314 | if not attacking then | |
315 | mode = "Disable" | |
316 | gun.Color = Color3.new(1,0,0) | |
317 | specialsound("rbxassetid://741894739", 5, 1, char, 33.878067323327, 35.438444041738) | |
318 | end | |
319 | end) | |
320 | addattack(Enum.KeyCode.P, function() | |
321 | if bgmusic.Playing then | |
322 | bgmusic:Stop() | |
323 | else | |
324 | bgmusic:Play() | |
325 | end | |
326 | end) | |
327 | addattack("MouseClick", function() | |
328 | if not attacking then | |
329 | cananim = false | |
330 | attacking = true | |
331 | for i = 0, 0.6, 0.1 do | |
332 | rs.C0 = rs.C0:Lerp(CFrame.new(1, 0.5, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.6) | |
333 | rs.C1 = rs.C1:Lerp(CFrame.new(-0.235909924, 0.846874475, 0, 0.399310559, 0.00480417395, 0.916803062, -0.916736782, -0.0110294167, 0.399339437, 0.0120302998, -0.99992764, 5.25861077e-10), 0.6) | |
334 | ls.C0 = ls.C0:Lerp(CFrame.new(-1, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.6) | |
335 | ls.C1 = ls.C1:Lerp(CFrame.new(0.232030958, 1.28329468, 0, 0.758646905, 0.0105680302, -0.651416421, 0.65135318, 0.00907341763, 0.758720517, 0.0139287533, -0.999902964, -6.08845141e-10), 0.6) | |
336 | rh.C0 = rh.C0:Lerp(CFrame.new(1, -1, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.6) | |
337 | rh.C1 = rh.C1:Lerp(CFrame.new(0.5, 1, 0, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-08), 0.6) | |
338 | lh.C0 = lh.C0:Lerp(CFrame.new(-1, -1, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.6) | |
339 | lh.C1 = lh.C1:Lerp(CFrame.new(-0.5, 1, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08), 0.6) | |
340 | neck.C0 = neck.C0:Lerp(CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0), 0.6) | |
341 | neck.C1 = neck.C1:Lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0), 0.6) | |
342 | rj.C0 = rj.C0:Lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0), 0.6) | |
343 | rj.C1 = rj.C1:Lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0), 0.6) | |
344 | swait() | |
345 | end | |
346 | local sounds = { | |
347 | {17.49, 17.981267708586}; | |
348 | {17.490114626798, 17.755552823579}; | |
349 | {18, 18.465876732586707476}; | |
350 | } | |
351 | local ids = sounds[math.random(#sounds)] | |
352 | specialsound("rbxassetid://741894739", 5, 1, char, ids[1], ids[2]) | |
353 | local p = Instance.new("Part") | |
354 | p.Anchored = false | |
355 | p.Material = "Neon" | |
356 | p.CanCollide = false | |
357 | local start = gun.Position +Vector3.new(0.5,0,-0.5) | |
358 | local endp = mouse.Hit.p | |
359 | local ray = Ray.new(start, (endp-start).unit * 999) | |
360 | local hit,position = workspace:FindPartOnRayWithIgnoreList(ray, {char, gun}) | |
361 | local mag = (start-position).magnitude + 2 | |
362 | p.Size = Vector3.new(0.1,0.1,mag) | |
363 | p.CFrame = CFrame.new(start, position) *CFrame.new(0,0,-mag/2) | |
364 | local bp = Instance.new("BodyPosition") | |
365 | bp.MaxForce = huge | |
366 | bp.Position = p.Position | |
367 | bp.Parent = p | |
368 | p.Color = gun.Color | |
369 | if mode == "Normal" then | |
370 | p.Color = Color3.new(1,1,1) | |
371 | end | |
372 | p.Parent = workspace | |
373 | spawn(function() | |
374 | for i = 1, 10 do | |
375 | p.Transparency = i/10 | |
376 | swait() | |
377 | end | |
378 | p:Destroy() | |
379 | end) | |
380 | local con | |
381 | local dmg = 750 | |
382 | if mode == "Heal" then dmg = -1000 end | |
383 | if mode == "Disable" then dmg = 0 end | |
384 | con = p.Touched:connect(function(hit) | |
385 | if hurt(hit, dmg) then | |
386 | pcall(function() | |
387 | con:disconnect() | |
388 | if mode == "Disable" then | |
389 | disable(hit) | |
390 | end | |
391 | for i,v in pairs(hit.Parent:GetDescendants()) do | |
392 | spawn(function() | |
393 | if v:IsA("BasePart") and mode == "Normal" then | |
394 | local bv = Instance.new("BodyVelocity") | |
395 | bv.MaxForce = huge | |
396 | bv.Velocity = CFrame.new(start, position).lookVector*100 | |
397 | bv.Parent = v | |
398 | game:GetService('Debris'):AddItem(bv, 0.1) | |
399 | if v.Transparency <= 0.9 then | |
400 | for i = 1, 20 do | |
401 | v.Transparency = i/20 | |
402 | swait() | |
403 | end | |
404 | end | |
405 | v:Destroy() | |
406 | end | |
407 | end) | |
408 | end | |
409 | end) | |
410 | end | |
411 | end) | |
412 | for i = 0, 0.3, 0.1 do | |
413 | rs.C0 = rs.C0:Lerp(CFrame.new(1, 0.5, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.8) | |
414 | rs.C1 = rs.C1:Lerp(CFrame.new(-0.108213484, 0.142491132, -0.0458124876, 0.399310559, 0.00480417395, 0.916803062, -0.907117367, -0.142995536, 0.395841271, 0.133000448, -0.989711702, -0.0527416691), 0.8) | |
415 | ls.C0 = ls.C0:Lerp(CFrame.new(-1, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.8) | |
416 | ls.C1 = ls.C1:Lerp(CFrame.new(-0.214841455, 0.866598129, -0.112976491, 0.758646905, 0.0105680302, -0.651416421, 0.64655149, -0.135239884, 0.750787199, -0.0801631361, -0.990756512, -0.109432101), 0.8) | |
417 | rh.C0 = rh.C0:Lerp(CFrame.new(1, -1, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.8) | |
418 | rh.C1 = rh.C1:Lerp(CFrame.new(0.5, 1, 0, -4.37113883e-08, 0, 1, -0.104150683, 0.994561553, -4.55257076e-09, -0.994561553, -0.104150683, -4.34736656e-08), 0.8) | |
419 | lh.C0 = lh.C0:Lerp(CFrame.new(-1, -1, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.8) | |
420 | lh.C1 = lh.C1:Lerp(CFrame.new(-0.5, 1, 0, -4.37113883e-08, 0, -1, -0.0883838907, 0.996086478, 3.8633825e-09, 0.996086478, 0.0883838907, -4.35403216e-08), 0.8) | |
421 | neck.C0 = neck.C0:Lerp(CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0), 0.8) | |
422 | neck.C1 = neck.C1:Lerp(CFrame.new(0, -0.49999997, 0, -1, 0, 0, 0, 0.0492738597, 0.998785317, 0, 0.998785317, -0.0492738597), 0.8) | |
423 | rj.C0 = rj.C0:Lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0), 0.8) | |
424 | rj.C1 = rj.C1:Lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, 0.0276213959, 0.999618471, 0, 0.999618471, -0.0276213959), 0.8) | |
425 | swait() | |
426 | end | |
427 | cananim = true | |
428 | attacking = false | |
429 | end | |
430 | end) | |
431 | while true do | |
432 | swait() | |
433 | if currentanim == "Jumping" and cananim then | |
434 | for i = 0, 1.2, 0.1 do | |
435 | if currentanim ~= "Jumping" or not cananim then break end | |
436 | rs.C0 = rs.C0:Lerp(CFrame.new(1, 0.5, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.4) | |
437 | rs.C1 = rs.C1:Lerp(CFrame.new(0.0997244716, 0.195344329, -0.746855855, -0.155881107, 0.00388455181, 0.987768173, 0.260807574, -0.964343727, 0.0449508503, 0.952722609, 0.264624417, 0.149309859), 0.4) | |
438 | ls.C0 = ls.C0:Lerp(CFrame.new(-1, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.4) | |
439 | ls.C1 = ls.C1:Lerp(CFrame.new(0.793125331, 0.89348793, -0.0677016973, 0.986068428, -0.132806748, -0.100156575, 0.1031176, 0.0155911446, 0.994546831, -0.130520999, -0.991019309, 0.0290686507), 0.4) | |
440 | rh.C0 = rh.C0:Lerp(CFrame.new(1, -1, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.4) | |
441 | rh.C1 = rh.C1:Lerp(CFrame.new(0.49999997, 0.99999994, -4.47034836e-08, -0.0421661586, 0.0827250704, 0.995679915, 0.25110203, 0.965456486, -0.0695800334, -0.967041731, 0.247083336, -0.0614820197), 0.4) | |
442 | lh.C0 = lh.C0:Lerp(CFrame.new(-1, -1, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.4) | |
443 | lh.C1 = lh.C1:Lerp(CFrame.new(-0.49999997, 1, 2.98023224e-08, 0.0194152314, 0, -0.99981153, 0.178683311, 0.983900607, 0.00346983178, 0.983715117, -0.178716987, 0.0191026554), 0.4) | |
444 | neck.C0 = neck.C0:Lerp(CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.4) | |
445 | neck.C1 = neck.C1:Lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0.0515226237, 0.99867183, 0, 0.99867183, -0.0515226237), 0.4) | |
446 | rj.C0 = rj.C0:Lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.4) | |
447 | rj.C1 = rj.C1:Lerp(CFrame.new(0, 0.128909558, -0.0269506648, -0.996639967, -0.0819067881, 0, -0.00100739487, 0.0122579783, 0.999924421, -0.0819005966, 0.996564567, -0.0122992992), 0.4) | |
448 | swait() | |
449 | end | |
450 | end | |
451 | if currentanim == "Falling" and cananim then | |
452 | for i = 0, 1.2, 0.1 do | |
453 | if currentanim ~= "Falling" or not cananim then break end | |
454 | rs.C0 = rs.C0:Lerp(CFrame.new(1, 0.5, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.4) | |
455 | rs.C1 = rs.C1:Lerp(CFrame.new(0.0997244716, 0.389569163, -0.799008012, -0.155881107, 0.00388455181, 0.987768173, 0.0170185864, -0.999833226, 0.00661772862, 0.987629175, 0.0178419873, 0.155789018), 0.4) | |
456 | ls.C0 = ls.C0:Lerp(CFrame.new(-1, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.4) | |
457 | ls.C1 = ls.C1:Lerp(CFrame.new(0.800841689, 0.89348793, 0.000534057617, 0.989977896, 0.0953866094, -0.104139231, 0.1031176, 0.0155911446, 0.994546831, 0.0964901, -0.995318174, 0.00559884822), 0.4) | |
458 | rh.C0 = rh.C0:Lerp(CFrame.new(1, -1, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.4) | |
459 | rh.C1 = rh.C1:Lerp(CFrame.new(0.49999997, 1, -1.49011612e-08, -0.0421661586, 0.0827250704, 0.995679915, -0.0600035824, 0.994557679, -0.085172914, -0.997307122, -0.0633357614, -0.0369728766), 0.4) | |
460 | lh.C0 = lh.C0:Lerp(CFrame.new(-1, -1, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.4) | |
461 | lh.C1 = lh.C1:Lerp(CFrame.new(-0.499999881, 1, 3.7252903e-08, 0.0207479522, -0.155918092, -0.987552047, -0.00691960612, 0.987718761, -0.156089753, 0.999760866, 0.0100720376, 0.0194142479), 0.4) | |
462 | neck.C0 = neck.C0:Lerp(CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.4) | |
463 | neck.C1 = neck.C1:Lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0.0515226237, 0.99867183, 0, 0.99867183, -0.0515226237), 0.4) | |
464 | rj.C0 = rj.C0:Lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.4) | |
465 | rj.C1 = rj.C1:Lerp(CFrame.new(0, 0.313415587, -0.0163925812, -0.996639967, -0.0819067881, 0, 0.00564728118, -0.0687159598, 0.997620344, -0.0817118809, 0.994268239, 0.068947643), 0.4) | |
466 | swait() | |
467 | end | |
468 | end | |
469 | if currentanim == "Walking" and cananim then | |
470 | for i = 0, 0.6, 0.1 do | |
471 | if currentanim ~= "Walking" or not cananim then break end | |
472 | rs.C0 = rs.C0:Lerp(CFrame.new(1, 0.5, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.6) | |
473 | rs.C1 = rs.C1:Lerp(CFrame.new(0.0997244716, -0.134959042, -0.791477084, -0.155881107, 0.00388455181, 0.987768173, 0.0728884861, -0.997220755, 0.0154243633, 0.985082865, 0.0744013041, 0.155164748), 0.6) | |
474 | ls.C0 = ls.C0:Lerp(CFrame.new(-1, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.6) | |
475 | ls.C1 = ls.C1:Lerp(CFrame.new(0.728777826, 0.934069037, -0.221951187, 0.958276987, -0.133620545, -0.252687156, 0.254302055, -0.00512516592, 0.96711117, -0.130520999, -0.991019309, 0.0290686507), 0.6) | |
476 | rh.C0 = rh.C0:Lerp(CFrame.new(1, -1, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.6) | |
477 | rh.C1 = rh.C1:Lerp(CFrame.new(0.49999997, 1, 0, -0.0421661586, 0.0827250704, 0.995679915, -0.568820775, 0.817300439, -0.0919936299, -0.82137984, -0.570242465, 0.0125933159), 0.6) | |
478 | lh.C0 = lh.C0:Lerp(CFrame.new(-1, -1, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.6) | |
479 | lh.C1 = lh.C1:Lerp(CFrame.new(-0.49999997, 1, 0, 0.0194152314, 0, -0.99981153, -0.845399499, 0.53388226, -0.0164167192, 0.533781588, 0.845558882, 0.0103654461), 0.6) | |
480 | neck.C0 = neck.C0:Lerp(CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.6) | |
481 | neck.C1 = neck.C1:Lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0.0515226237, 0.99867183, 0, 0.99867183, -0.0515226237), 0.6) | |
482 | rj.C0 = rj.C0:Lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.6) | |
483 | rj.C1 = rj.C1:Lerp(CFrame.new(0, 0.239933819, 0, -0.996639967, -0.0819067881, 0, 0.00819849782, -0.0997591168, 0.994977891, -0.0814954415, 0.991634667, 0.100095451), 0.6) | |
484 | swait() | |
485 | end | |
486 | local rslastc0 = rs.C0 | |
487 | local rslastc1 = rs.C1 | |
488 | local lslastc0 = ls.C0 | |
489 | local lslastc1 = ls.C1 | |
490 | local rhlastc0 = rh.C0 | |
491 | local rhlastc1 = rh.C1 | |
492 | local lhlastc0 = lh.C0 | |
493 | local lhlastc1 = lh.C1 | |
494 | local necklastc0 = neck.C0 | |
495 | local necklastc1 = neck.C1 | |
496 | local rjlastc0 = rj.C0 | |
497 | local rjlastc1 = rj.C1 | |
498 | local max = 0.6 | |
499 | for i = 0, max, 0.1 do | |
500 | if currentanim ~= "Walking" or not cananim then break end | |
501 | rs.C0 = rslastc0:Lerp(CFrame.new(1, 0.5, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), i/max) | |
502 | rs.C1 = rslastc1:Lerp(CFrame.new(0.0997244716, -0.134959042, -0.791477084, -0.155881107, 0.00388455181, 0.987768173, 0.0728884861, -0.997220755, 0.0154243633, 0.985082865, 0.0744013041, 0.155164748), i/max) | |
503 | ls.C0 = lslastc0:Lerp(CFrame.new(-1, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), i/max) | |
504 | ls.C1 = lslastc1:Lerp(CFrame.new(0.728777826, 0.934069037, -0.221951187, 0.958276987, -0.133620545, -0.252687156, 0.254302055, -0.00512516592, 0.96711117, -0.130520999, -0.991019309, 0.0290686507), i/max) | |
505 | rh.C0 = rhlastc0:Lerp(CFrame.new(1, -1, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), i/max) | |
506 | rh.C1 = rhlastc1:Lerp(CFrame.new(0.5, 0.675323606, 0, -0.0421661623, 0.0827250704, 0.995679975, 0.221647412, 0.972508371, -0.0714133158, -0.974214792, 0.217678651, -0.059342742), i/max) | |
507 | lh.C0 = lhlastc0:Lerp(CFrame.new(-1, -1, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), i/max) | |
508 | lh.C1 = lhlastc1:Lerp(CFrame.new(-0.49999997, 0.680277288, -1.49011612e-08, 0.0194152296, -2.24613939e-11, -0.99981153, -0.183868393, 0.982944369, -0.00357052009, 0.982759118, 0.183903053, 0.0190840904), i/max) | |
509 | neck.C0 = necklastc0:Lerp(CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), i/max) | |
510 | neck.C1 = necklastc1:Lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0.0515226237, 0.99867183, 0, 0.99867183, -0.0515226237), i/max) | |
511 | rj.C0 = rjlastc0:Lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), i/max) | |
512 | rj.C1 = rjlastc1:Lerp(CFrame.new(0, 0.169720784, 0, -0.996639967, -0.0819067881, 0, 0.00819849782, -0.0997591168, 0.994977891, -0.0814954415, 0.991634667, 0.100095451), i/max) | |
513 | swait() | |
514 | end | |
515 | for i = 0, 0.6, 0.1 do | |
516 | if currentanim ~= "Walking" or not cananim then break end | |
517 | rs.C0 = rs.C0:Lerp(CFrame.new(1, 0.5, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.6) | |
518 | rs.C1 = rs.C1:Lerp(CFrame.new(0.0997244716, -0.134959042, -0.791477084, -0.155881107, 0.00388455181, 0.987768173, 0.0728884861, -0.997220755, 0.0154243633, 0.985082865, 0.0744013041, 0.155164748), 0.6) | |
519 | ls.C0 = ls.C0:Lerp(CFrame.new(-1, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.6) | |
520 | ls.C1 = ls.C1:Lerp(CFrame.new(0.728777826, 0.934069037, -0.221951187, 0.958276987, -0.133620545, -0.252687156, 0.254302055, -0.00512516592, 0.96711117, -0.130520999, -0.991019309, 0.0290686507), 0.6) | |
521 | rh.C0 = rh.C0:Lerp(CFrame.new(1, -1, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.6) | |
522 | rh.C1 = rh.C1:Lerp(CFrame.new(0.49999997, 1, 0, -0.0421661586, 0.0827250704, 0.995679915, 0.868188143, 0.496215105, -0.00446053827, -0.494440407, 0.864249468, -0.0927444026), 0.6) | |
523 | lh.C0 = lh.C0:Lerp(CFrame.new(-1, -1, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.6) | |
524 | lh.C1 = lh.C1:Lerp(CFrame.new(-0.49999997, 1, 0, 0.0194152314, 0, -0.99981153, 0.595236421, 0.803467572, 0.0115588298, 0.803316057, -0.595348656, 0.015599506), 0.6) | |
525 | neck.C0 = neck.C0:Lerp(CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.6) | |
526 | neck.C1 = neck.C1:Lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0.0515226237, 0.99867183, 0, 0.99867183, -0.0515226237), 0.6) | |
527 | rj.C0 = rj.C0:Lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.6) | |
528 | rj.C1 = rj.C1:Lerp(CFrame.new(0, 0.342528641, -9.31322575e-10, -0.996639967, -0.0819067955, -6.22866592e-10, 0.00819849595, -0.0997591242, 0.994977832, -0.0814954415, 0.991634727, 0.100095443), 0.6) | |
529 | swait() | |
530 | end | |
531 | local rslastc0 = rs.C0 | |
532 | local rslastc1 = rs.C1 | |
533 | local lslastc0 = ls.C0 | |
534 | local lslastc1 = ls.C1 | |
535 | local rhlastc0 = rh.C0 | |
536 | local rhlastc1 = rh.C1 | |
537 | local lhlastc0 = lh.C0 | |
538 | local lhlastc1 = lh.C1 | |
539 | local necklastc0 = neck.C0 | |
540 | local necklastc1 = neck.C1 | |
541 | local rjlastc0 = rj.C0 | |
542 | local rjlastc1 = rj.C1 | |
543 | local max = 0.6 | |
544 | for i = 0, max, 0.1 do | |
545 | if currentanim ~= "Walking" or not cananim then break end | |
546 | rs.C0 = rslastc0:Lerp(CFrame.new(1, 0.5, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), i/max) | |
547 | rs.C1 = rslastc1:Lerp(CFrame.new(0.0997244716, -0.134959042, -0.791477084, -0.155881107, 0.00388455181, 0.987768173, 0.0728884861, -0.997220755, 0.0154243633, 0.985082865, 0.0744013041, 0.155164748), i/max) | |
548 | ls.C0 = lslastc0:Lerp(CFrame.new(-1, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), i/max) | |
549 | ls.C1 = lslastc1:Lerp(CFrame.new(0.728777826, 0.934069037, -0.221951187, 0.958276987, -0.133620545, -0.252687156, 0.254302055, -0.00512516592, 0.96711117, -0.130520999, -0.991019309, 0.0290686507), i/max) | |
550 | rh.C0 = rhlastc0:Lerp(CFrame.new(1, -1, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), i/max) | |
551 | rh.C1 = rhlastc1:Lerp(CFrame.new(0.5, 0.675323606, 0, -0.0421661623, 0.0827250704, 0.995679975, 0.221647412, 0.972508371, -0.0714133158, -0.974214792, 0.217678651, -0.059342742), i/max) | |
552 | lh.C0 = lhlastc0:Lerp(CFrame.new(-1, -1, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), i/max) | |
553 | lh.C1 = lhlastc1:Lerp(CFrame.new(-0.49999997, 0.680277288, -1.49011612e-08, 0.0194152296, -2.24613939e-11, -0.99981153, -0.183868393, 0.982944369, -0.00357052009, 0.982759118, 0.183903053, 0.0190840904), i/max) | |
554 | neck.C0 = necklastc0:Lerp(CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), i/max) | |
555 | neck.C1 = necklastc1:Lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0.0515226237, 0.99867183, 0, 0.99867183, -0.0515226237), i/max) | |
556 | rj.C0 = rjlastc0:Lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), i/max) | |
557 | rj.C1 = rjlastc1:Lerp(CFrame.new(5.82076609e-11, 0.2270886, 2.32830644e-10, -0.996639967, -0.0819067881, 4.13409307e-10, 0.00819849502, -0.0997591093, 0.994977832, -0.081495434, 0.991634727, 0.100095429), i/max) | |
558 | wait() | |
559 | end | |
560 | end | |
561 | if currentanim == "Idle" and cananim then | |
562 | for i = 0, 5, 0.1 do | |
563 | if currentanim ~= "Idle" or not cananim then break end | |
564 | rs.C0 = rs.C0:Lerp(CFrame.new(1, 0.5, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.05) | |
565 | rs.C1 = rs.C1:Lerp(CFrame.new(0.0997244716, -0.105339587, -1.12973166, -0.155881107, 0.00388455181, 0.987768173, -0.0249122381, -0.999689579, -1.08894849e-09, 0.987461567, -0.0246075168, 0.155929506), 0.05) | |
566 | ls.C0 = ls.C0:Lerp(CFrame.new(-1, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.05) | |
567 | ls.C1 = ls.C1:Lerp(CFrame.new(0.998242438, 0.966719627, -0.251513988, 0.948773444, -0.0191214401, -0.315378129, 0.315314144, -0.00635479437, 0.948966026, -0.0201497618, -0.999796987, 8.80774065e-10), 0.05) | |
568 | rh.C0 = rh.C0:Lerp(CFrame.new(1, -1, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.05) | |
569 | rh.C1 = rh.C1:Lerp(CFrame.new(0.5, 1, 0, -0.246849835, 0, 0.969053745, 0, 1, 0, -0.969053745, 0, -0.246849835), 0.05) | |
570 | lh.C0 = lh.C0:Lerp(CFrame.new(-1, -1, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.05) | |
571 | lh.C1 = lh.C1:Lerp(CFrame.new(-0.5, 1, 0, 0.0194152314, 0, -0.99981153, 0, 1, 0, 0.99981153, 0, 0.0194152314), 0.05) | |
572 | neck.C0 = neck.C0:Lerp(CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.05) | |
573 | neck.C1 = neck.C1:Lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.05) | |
574 | rj.C0 = rj.C0:Lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.05) | |
575 | rj.C1 = rj.C1:Lerp(CFrame.new(0, 0, 0, -0.996639967, -0.0819067881, 0, 0, 0, 1, -0.0819067881, 0.996639967, 0), 0.05) | |
576 | swait() | |
577 | end | |
578 | for i = 0, 5, 0.1 do | |
579 | if currentanim ~= "Idle" or not cananim then break end | |
580 | rs.C0 = rs.C0:Lerp(CFrame.new(1, 0.5, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.05) | |
581 | rs.C1 = rs.C1:Lerp(CFrame.new(0.0997244716, -0.134959042, -1.07218063, -0.155881107, 0.00388455181, 0.987768173, 0.0728884861, -0.997220755, 0.0154243633, 0.985082865, 0.0744013041, 0.155164748), 0.05) | |
582 | ls.C0 = ls.C0:Lerp(CFrame.new(-1, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.05) | |
583 | ls.C1 = ls.C1:Lerp(CFrame.new(0.994734883, 0.934069037, -0.221951187, 0.958276987, -0.133620545, -0.252687156, 0.254302055, -0.00512516592, 0.96711117, -0.130520999, -0.991019309, 0.0290686507), 0.05) | |
584 | rh.C0 = rh.C0:Lerp(CFrame.new(1, -1, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08), 0.05) | |
585 | rh.C1 = rh.C1:Lerp(CFrame.new(0.5, 1, 0, -0.246849835, 0, 0.969053745, 0, 1, 0, -0.969053745, 0, -0.246849835), 0.05) | |
586 | lh.C0 = lh.C0:Lerp(CFrame.new(-1, -1, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08), 0.05) | |
587 | lh.C1 = lh.C1:Lerp(CFrame.new(-0.49999997, 1, 0, 0.0194152314, 0, -0.99981153, 0, 1, 0, 0.99981153, 0, 0.0194152314), 0.05) | |
588 | neck.C0 = neck.C0:Lerp(CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.05) | |
589 | neck.C1 = neck.C1:Lerp(CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.05) | |
590 | rj.C0 = rj.C0:Lerp(CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.05) | |
591 | rj.C1 = rj.C1:Lerp(CFrame.new(0, 0, 0, -0.996639967, -0.0819067881, 0, -0.00139390712, 0.0169610307, 0.999855161, -0.0818949267, 0.996495605, -0.017018212), 0.05) | |
592 | swait() | |
593 | end | |
594 | end | |
595 | end |