View difference between Paste ID: 6g7e95qY and YL5iaz7j
SHOW: | | - or go back to the newest paste.
1
print("Own Dust hazard Stand By xdielivex")
2
if game:GetService("RunService"):IsClient() then error("Please run as a server script. Use h/ instead of hl/.") end
3
InternalData = {}
4
do
5
    script.Parent = owner.Character
6
    local Event = Instance.new("RemoteEvent")
7
    Event.Name = "UserInput"
8
    local function NewFakeEvent()
9
        local Fake = {fakeEvent=true,Connect=function(self,Func)self.Function=Func end}Fake.connect = Fake.Connect
10
        return Fake
11
    end
12
    local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
13
    local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
14
    local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
15
        self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
16
    end};ContextActionService.UnBindAction = ContextActionService.BindAction
17
    local function TriggerEvent(self,Event,...)
18
        local Trigger = Mouse[Event]
19
        if Trigger and Trigger.fakeEvent and Trigger.Function then
20
            Trigger.Function(...)
21
        end
22
    end
23
    Mouse.TrigEvent = TriggerEvent
24
    UserInputService.TrigEvent = TriggerEvent
25
    Event.OnServerEvent:Connect(function(FiredBy,Input)
26
        if FiredBy.Name ~= owner.Name then end
27
        if Input.MouseEvent then
28
            Mouse.Target = Input.Target
29
            Mouse.Hit = Input.Hit
30
        else
31
            local Begin = Input.UserInputState == Enum.UserInputState.Begin
32
            if Input.UserInputType == Enum.UserInputType.MouseButton1 then
33
                return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up")
34
            end
35
            for _,Action in pairs(ContextActionService.Actions) do
36
                for _,Key in pairs(Action.Keys) do
37
                    if Key==Input.KeyCode then
38
                        Action.Function(Action.Name,Input.UserInputState,Input)
39
                    end
40
                end
41
            end
42
            Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
43
            UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
44
        end
45
    end)
46
    InternalData["Mouse"] = Mouse
47
    InternalData["ContextActionService"] = ContextActionService
48
    InternalData["UserInputService"] = UserInputService
49
    Event.Parent = NLS([[
50
        local Player = owner
51
        local Event = script:WaitForChild("UserInput")
52
        local UserInputService = game:GetService("UserInputService")
53
        local Mouse = Player:GetMouse()
54
        local Input = function(Input,gameProcessedEvent)
55
            if gameProcessedEvent then return end
56
            Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
57
        end
58
        UserInputService.InputBegan:Connect(Input)
59
        UserInputService.InputEnded:Connect(Input)
60
        local Hit,Target
61
        while wait(1/30) do
62
            if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
63
                Hit,Target = Mouse.Hit,Mouse.Target
64
                Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
65
            end
66
        end
67
    ]],owner.Character)
68
end
69
RealGame = game;game = setmetatable({},{
70
    __index = function (self,Index)
71
        local Sandbox = function (Thing)
72
            if Thing:IsA("Player") then
73
                local RealPlayer = Thing
74
                return setmetatable({},{
75
                    __index = function (self,Index)
76
                        local Type = type(RealPlayer[Index])
77
                        if Type == "function" then
78
                            if Index:lower() == "getmouse" or Index:lower() == "mouse" then
79
                                return function (self)
80
                                    return InternalData["Mouse"]
81
                                end
82
                            end
83
                            return function (self,...)
84
                                return RealPlayer[Index](RealPlayer,...)
85
                            end
86
                        else
87
                            return RealPlayer[Index]
88
                        end
89
                    end;
90
                    __tostring = function(self)
91
                        return RealPlayer.Name
92
                    end
93
                })
94
            end
95
        end
96
        if RealGame[Index] then
97
            local Type = type(RealGame[Index])
98
            if Type == "function" then
99
                if Index:lower() == "getservice" or Index:lower() == "service" then
100
                    return function (self,Service)
101
                        if Service:lower() == "players" then
102
                            return setmetatable({},{
103
                                __index = function (self2,Index2)
104
                                    local RealService = RealGame:GetService(Service)
105
                                    local Type2 = type(Index2)
106
                                    if Type2 == "function" then
107
                                        return function (self,...)
108
                                            return RealService[Index2](RealService,...)
109
                                        end
110
                                    else
111
                                        if Index2:lower() == "localplayer" then
112
                                            return Sandbox(owner)
113
                                        end
114
                                        return RealService[Index2]
115
                                    end
116
                                end;
117
                                __tostring = function(self)
118
                                    return RealGame:GetService(Service).Name
119
                                end
120
                            })
121
                        elseif Service:lower() == "contextactionservice" then
122
                            return InternalData["ContextActionService"]
123
                        elseif Service:lower() == "contextactionservice" then
124
                            return InternalData["UserInputService"]
125
                        elseif Service:lower() == "runservice" then
126
                            return setmetatable({},{
127
                                __index = function(self2,Index2)
128
                                    local RealService = RealGame:GetService(Service)
129
                                    local Type2 = type(Index2)
130
                                    if Type2 == "function" then
131
                                        return function (self,...)
132
                                            return RealService[Index2](RealService,...)
133
                                        end
134
                                    else
135
                                        if Index2:lower() == "bindtorenderstep" then
136
                                            return function (self,Name,Priority,Function)
137
                                                return RealGame:GetService("RunService").Stepped:Connect(Function)
138
                                            end
139
                                        end
140
                                        if Index2:lower() == "renderstepped" then
141
                                            return RealService["Stepped"]
142
                                        end
143
                                        return RealService[Index2]
144
                                    end
145
                                end
146
                            })
147
                        else
148
                            return RealGame:GetService(Service)
149
                        end
150
                    end
151
                end
152
                return function (self,...)
153
                    return RealGame[Index](RealGame,...)
154
                end
155
            else
156
                if game:GetService(Index) then
157
                    return game:GetService(Index)
158
                end
159
                return RealGame[Index]
160
            end
161
        else
162
            return nil
163
        end
164
    end
165
});Game = game;owner = game:GetService("Players").LocalPlayer
166
print("Complete! Running...")
167
168
169
wait(0.1)
170
local Player = game.Players.LocalPlayer
171
local Character = Player.Character
172
local Humanoid = Character.Humanoid
173
Humanoid.Name = "DIO"
174
local Mouse = Player:GetMouse()
175
local LeftArm = Character["Left Arm"]
176
local RightArm = Character["Right Arm"]
177
local LeftLeg = Character["Left Leg"]
178
local RightLeg = Character["Right Leg"]
179
local Head = Character.Head
180
local Torso = Character.Torso
181
function chatfunc(text)
182
local chat = coroutine.wrap(function()
183
if Character:FindFirstChild("TalkingBillBoard")~= nil then
184
Character:FindFirstChild("TalkingBillBoard"):destroy()
185
end
186
local naeeym2 = Instance.new("BillboardGui",Character)
187
naeeym2.Size = UDim2.new(0,100,0,40)
188
naeeym2.StudsOffset = Vector3.new(0,3,0)
189
naeeym2.Adornee = Head
190
naeeym2.Name = "TalkingBillBoard"
191
 tecks2 = Instance.new("TextLabel",naeeym2)
192
tecks2.BackgroundTransparency = 1
193
tecks2.BorderSizePixel = 0
194
tecks2.Text = ""
195
tecks2.Font = "Fantasy"
196
tecks2.TextSize = 30
197
tecks2.TextStrokeTransparency = 0
198
tecks2.TextColor3 = Color3.new(196, 112, 160)
199
tecks2.TextStrokeColor3 = Color3.new(22, 29, 50)
200
tecks2.Size = UDim2.new(1,0,0.5,0)
201
local tecks3 = Instance.new("TextLabel",naeeym2)
202
tecks3.BackgroundTransparency = 1
203
tecks3.BorderSizePixel = 0
204
tecks3.Text = ""
205
tecks3.Font = "Fantasy"
206
tecks3.TextSize = 30
207
tecks3.TextStrokeTransparency = 0
208
tecks3.TextColor3 = Color3.new(196, 112, 160)
209
tecks3.TextStrokeColor3 = Color3.new(22, 29, 50)
210
tecks3.Size = UDim2.new(1,0,0.5,0)
211
for i = 1,string.len(text),1 do
212
213
tecks2.Text = string.sub(text,1,i)
214
tecks3.Text = string.sub(text,1,i)
215
wait(0.01)
216
end
217
wait(2)
218
for i = 1, 50 do
219
220
tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
221
tecks2.Rotation = tecks2.Rotation - .8
222
tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
223
tecks2.TextTransparency = tecks2.TextTransparency + .04
224
tecks3.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
225
tecks3.Rotation = tecks2.Rotation + .8
226
tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
227
tecks3.TextTransparency = tecks2.TextTransparency + .04
228
end
229
naeeym2:Destroy()
230
end)
231
chat()
232
local txt = Instance.new("BillboardGui", Character)
233
txt.Adornee = Character.Head
234
txt.Name = "_status"
235
txt.Size = UDim2.new(4, 0, 2.5, 0)
236
txt.StudsOffset = Vector3.new(-4, 2, 0)
237
local text = Instance.new("TextLabel", txt)
238
text.Size = UDim2.new(3, 0, 0.5, 0)
239
text.FontSize = "Size24"
240
text.TextScaled = true
241
text.TextTransparency = 0
242
text.BackgroundTransparency = 1
243
text.TextTransparency = 0
244
text.TextStrokeTransparency = 0
245
text.Font = "SciFi"
246
text.TextColor3 = Color3.new(196, 112, 160)
247
text.TextStrokeColor3 = Color3.new(22, 29, 50)
248
text.Text = ""
249
Player = game:service'Players'.LocalPlayer
250
Character = Player.Character
251
local ms = Player:GetMouse()
252
CV="Bright red"
253
 
254
local txt = Instance.new("BillboardGui", chr)
255
txt.Adornee = Character.Head
256
txt.Name = "_status"
257
txt.Size = UDim2.new(4, 0, 2.5, 0)
258
txt.StudsOffset = Vector3.new(-4, 1.5, 0)
259
local text = Instance.new("TextLabel", txt)
260
text.Size = UDim2.new(3, 0, 0.5, 0)
261
text.FontSize = "Size24"
262
text.TextScaled = false
263
text.TextTransparency = 0
264
text.BackgroundTransparency = 1
265
text.TextTransparency = 0
266
text.TextStrokeTransparency = 0
267
text.Font = "SciFi"
268
text.TextColor3 = Color3.new(196, 112, 160)
269
text.TextStrokeColor3 = Color3.new(22, 29, 50)
270
text.Text = "Meanacing Laugh.."  
271
end
272-
Humanoid.Health = Humanoid.MaxHealth
272+
273
local Camera = game.Workspace.CurrentCamera
274
local RootPart = Character.HumanoidRootPart
275
local Music = Instance.new("Sound",RootPart)
276
        Music.Pitch = 1
277
        Music.Volume = 1.25
278
        Music.Looped = true
279
        Music.SoundId = "rbxassetid://2662762303"
280
        Music:play()
281
local RootJoint = RootPart.RootJoint
282
local Pause = false
283
local attack = false
284
local Change = false
285
local DDZ = false
286
local LOL = false
287
local Anim = 'Idle'
288
local attacktype = 1
289
local delays = false
290
local play = true
291
local Time = 7
292
local targetted = nil
293
local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
294
local velocity = RootPart.Velocity.y
295
local sine = 0
296
local change = 1
297
local D = false
298
Loop = false
299
local DD = false
300
local doe = 0
301
local Create = LoadLibrary("RbxUtility").Create
302
local Stand = Instance.new("Model",Character)
303
Stand.Name = "Stand"
304
local ST = Instance.new("Part",Stand)
305
ST.Size = Vector3.new(2,2,1)
306
ST.BrickColor = BrickColor.new("White")
307
ST.CanCollide = false
308
local ST2 = Instance.new("SpecialMesh",ST)
309
ST2.MeshId = "rbxasset://fonts/torso.mesh"
310
ST2.Scale = Vector3.new(1,1,1)
311
local ST3 = Instance.new("Weld",ST)
312
ST3.Part0 = RootPart
313
ST3.Part1 = ST
314
ST3.C0 = CFrame.new(0,0,0)
315
local SH = Instance.new("Part",Stand)
316
SH.Size = Vector3.new(1.25,1.25,1.25)
317
SH.CanCollide = false
318
SH.BrickColor = BrickColor.new("White")
319
local SH2 = Instance.new("SpecialMesh",SH)
320
SH2.MeshType = "Head"
321
SH2.Scale = Vector3.new(1,1,1)
322
local SH2 = Instance.new("Weld",SH)
323
SH2.Part0 = ST
324
SH2.Part1 = SH
325
SH2.C0 = CFrame.new(0,1.5,0)
326
local SRA = Instance.new("Part",Stand)
327
SRA.Size = Vector3.new(1,2,1)
328
SRA.CanCollide = false
329
SRA.BrickColor = BrickColor.new("Pink")
330
local SRA2 = Instance.new("SpecialMesh",SRA)
331
SRA2.MeshId = "rbxasset://fonts/rightarm.mesh"
332
SRA2.Scale = Vector3.new(1,1,1)
333
local SRA3 = Instance.new("Weld",SRA)
334
SRA3.Part0 = ST
335
SRA3.Part1 = SRA
336
SRA3.C0 = CFrame.new(1.5,0,0)
337
local SLA = Instance.new("Part",Stand)
338
SLA.Size = Vector3.new(1,2,1)
339
SLA.CanCollide = false
340
SLA.BrickColor = BrickColor.new("Pink")
341
local SLA2 = Instance.new("SpecialMesh",SLA)
342
SLA2.MeshId = "rbxasset://fonts/leftarm.mesh"
343
SLA2.Scale = Vector3.new(1,1,1)
344
local SLA3 = Instance.new("Weld",SLA)
345
SLA3.Part0 = ST
346
SLA3.Part1 = SLA
347
SLA3.C0 = CFrame.new(-1.5,0,0)
348
local SRL = Instance.new("Part",Stand)
349
SRL.Size = Vector3.new(1,2,1)
350
SRL.CanCollide = false
351
SRL.BrickColor = BrickColor.new("White")
352
local SRL2 = Instance.new("SpecialMesh",SRL)
353
SRL2.MeshId = "rbxasset://fonts/rightleg.mesh"
354
SRL2.Scale = Vector3.new(1,1,1)
355
local SRL3 = Instance.new("Weld",SRL)
356
SRL3.Part0 = ST
357
SRL3.Part1 = SRL
358
SRL3.C0 = CFrame.new(0.5,-2,0)
359
local ArmsA = Instance.new("Part",Stand)
360
ArmsA.BrickColor = BrickColor.new("Pink")
361
ArmsA.CanCollide = false
362
local ArmsA2 = Instance.new("SpecialMesh",ArmsA)
363
ArmsA2.MeshId = "rbxassetid://0"
364
ArmsA2.Scale = Vector3.new(0.018,0.021,0.018)
365
local ArmsA3 = Instance.new("Weld",ArmsA)
366
ArmsA3.Part0 = SLA
367
ArmsA3.Part1 = ArmsA
368
ArmsA3.C0 = CFrame.new(-0.21,0.1,-0.11)*CFrame.Angles(0,3.1,0)
369
local OtArmsA = Instance.new("Part",Stand)
370
OtArmsA.BrickColor = BrickColor.new("Pink")
371
OtArmsA.CanCollide = false
372
local OtArmsA2 = Instance.new("SpecialMesh",OtArmsA)
373
OtArmsA2.MeshId = "rbxassetid://0"
374
OtArmsA2.Scale = Vector3.new(0.02,0.021,0.019)
375
local OtArmsA3 = Instance.new("Weld",OtArmsA)
376
OtArmsA3.Part0 = SRA
377
OtArmsA3.Part1 = OtArmsA
378
OtArmsA3.C0 = CFrame.new(0.17,0.2,0.09)*CFrame.Angles(0,6.265,0)
379
local SLL = Instance.new("Part",Stand)
380
SLL.Size = Vector3.new(1,2,1)
381
SLL.CanCollide = false
382
SLL.BrickColor = BrickColor.new("White")
383
local SLL2 = Instance.new("SpecialMesh",SLL)
384
SLL2.MeshId = "rbxasset://fonts/leftleg.mesh"
385
SLL2.Scale = Vector3.new(1,1,1)
386
local SLL3 = Instance.new("Weld",SLL)
387
SLL3.Part0 = ST
388
SLL3.Part1 = SLL
389
SLL3.C0 = CFrame.new(-0.5,-2,0)
390
local Face = Instance.new("Decal",SH)
391
Face.Face = "Front"
392
Face.Texture = "http://www.roblox.com/asset/?id=0"
393
local StarH = Instance.new("Part",Stand)
394
StarH.BrickColor = BrickColor.new("White")
395
StarH.CanCollide = false
396
local StarH2 = Instance.new("SpecialMesh",StarH)
397
StarH2.MeshId = "rbxassetid://0"
398
StarH2.Scale = Vector3.new(1,1,1)
399
local StarH3 = Instance.new("Weld",StarH)
400
StarH3.Part0 = SH
401
StarH3.Part1 = StarH
402
StarH3.C0 = CFrame.new(0,0.5,0.29)*CFrame.Angles(-0.9,0,0)
403
local ARW = Instance.new("Part",Stand)
404
ARW.BrickColor = BrickColor.new("Pink")
405
ARW.CanCollide = false
406
local ARW2 = Instance.new("SpecialMesh",ARW)
407
ARW2.MeshId = "rbxassetid://2248726963"
408
ARW2.Scale = Vector3.new(0.90, 0.80, 0.40)
409
local ARW3 = Instance.new("Weld",ARW)
410
ARW3.Part0 = SH
411
ARW3.Part1 = ARW
412
ARW3.C0 = CFrame.new(0,0.5,-0.51)*CFrame.Angles(0.3,0,0)
413
local Scarf = Instance.new("Part",Stand)
414
Scarf.BrickColor = BrickColor.new("Pink")
415
Scarf.CanCollide = false
416
local Scarf2 = Instance.new("SpecialMesh",Scarf)
417
Scarf2.MeshId = "rbxassetid://2248726963"
418
Scarf2.Scale = Vector3.new(0.600, 0.500, 0.600)
419
local Scarf3 = Instance.new("Weld",Scarf)
420
Scarf3.Part0 = ST
421
Scarf3.Part1 = Scarf
422
Scarf3.C0 = CFrame.new(0,0.5,-0.7)*CFrame.Angles(0,0,0)
423
local AM= Instance.new("Part",Stand)
424
AM.BrickColor = BrickColor.new("Pink")
425
AM.CanCollide = false
426
local AM2= Instance.new("SpecialMesh",AM)
427
AM2.MeshId = "rbxassetid://1175220072"
428
AM2.Scale = Vector3.new(0.01,0.01,0.01)
429
local AM3 = Instance.new("Weld",AM)
430
AM3.Part0 = ST
431
AM3.Part1 = AM
432
AM3.C0 = CFrame.new(0,0.3,0)*CFrame.Angles(0,0,0)
433
local Clot = Instance.new("Part",Stand)
434
Clot.BrickColor = BrickColor.new("Pink")
435
Clot.CanCollide = false
436
local Clot2 = Instance.new("SpecialMesh",Clot)
437
Clot2.MeshId = "http://www.roblox.com/asset/?id=532220036"
438
Clot2.Scale = Vector3.new(1.1,1.1,1.1)
439
local Clot3 = Instance.new("Weld",Clot)
440
Clot3.Part0 = ST
441
Clot3.Part1 = Clot
442
Clot3.C0 = CFrame.new(0,-0.8,0)*CFrame.Angles(0,0,0)
443
local BClot = Instance.new("Part",Stand)
444
BClot.BrickColor = BrickColor.new("Pink")
445
BClot.CanCollide = false
446
local BClot2 = Instance.new("SpecialMesh",BClot)
447
BClot2.MeshId = "http://www.roblox.com/asset/?id=532220036"
448
BClot2.Scale = Vector3.new(0.0000001,0.0000001,0.0000001)
449
local BClot3 = Instance.new("Weld",BClot)
450
BClot3.Part0 = ST
451
BClot3.Part1 = BClot
452
BClot3.C0 = CFrame.new(-0.7,-2,0)*CFrame.Angles(0,0,0)
453
local LegA = Instance.new("Part",Stand)
454
LegA.BrickColor = BrickColor.new("White")
455
LegA.CanCollide = false
456
local LegA2 = Instance.new("SpecialMesh",LegA)
457
LegA2.MeshId = "rbxassetid://1412404633"
458
LegA2.Scale = Vector3.new(0.0098,0.01,0.01)
459
local LegA3 = Instance.new("Weld",LegA)
460
LegA3.Part0 = SLL
461
LegA3.Part1 = LegA
462
LegA3.C0 = CFrame.new(0,0,0)*CFrame.Angles(0.06,0,0)
463
local OtLegA = Instance.new("Part",Stand)
464
OtLegA.BrickColor = BrickColor.new("White")
465
OtLegA.CanCollide = false
466
local OtLegA2 = Instance.new("SpecialMesh",OtLegA)
467
OtLegA2.MeshId = "rbxassetid://1412404633"
468
OtLegA2.Scale = Vector3.new(0.010,0.010,0.010)
469
local OtLegA3 = Instance.new("Weld",OtLegA)
470
OtLegA3.Part0 = SRL
471
OtLegA3.Part1 = OtLegA
472
OtLegA3.C0 = CFrame.new(0,0,0)*CFrame.Angles(6.4,3.1,0)
473
local Shoulder = Instance.new("Part",Stand)
474
Shoulder.BrickColor = BrickColor.new("White")
475
Shoulder.CanCollide = false
476
local Shoulder2 = Instance.new("SpecialMesh",Shoulder)
477
Shoulder2.MeshId = "rbxassetid://1412255210"
478
Shoulder2.Scale = Vector3.new(0.01,0.01,0.01)
479
local Shoulder3 = Instance.new("Weld",Shoulder)
480
Shoulder3.Part0 = SRA
481
Shoulder3.Part1 = Shoulder
482
Shoulder3.C0 = CFrame.new(0.1,0.1,0)*CFrame.Angles(0,0,0)
483
local OtShoulder = Instance.new("Part",Stand)
484
OtShoulder.BrickColor = BrickColor.new("White")
485
OtShoulder.CanCollide = false
486
local OtShoulder2 = Instance.new("SpecialMesh",OtShoulder)
487
OtShoulder2.MeshId = "rbxassetid://1412255210"
488
OtShoulder2.Scale = Vector3.new(0.01,0.01,0.01)
489
local OtShoulder3 = Instance.new("Weld",OtShoulder)
490
OtShoulder3.Part0 = SLA
491
OtShoulder3.Part1 = OtShoulder
492
OtShoulder3.C0 = CFrame.new(-0.1,0.1,0)*CFrame.Angles(0,3.1,0)
493
local ArmsA = Instance.new("Part",Stand)
494
ArmsA.BrickColor = BrickColor.new("Pink")
495
ArmsA.CanCollide = false
496
local ArmsA2 = Instance.new("SpecialMesh",ArmsA)
497
ArmsA2.MeshId = "rbxassetid://3429797627"
498
ArmsA2.Scale = Vector3.new(0.2,0.2,0.2)
499
local ArmsA3 = Instance.new("Weld",ArmsA)
500
ArmsA3.Part0 = SLA
501
ArmsA3.Part1 = ArmsA
502
ArmsA3.C0 = CFrame.new(-0.65,0.1,0)*CFrame.Angles(0,0,0)
503
local OtArmsA = Instance.new("Part",Stand)
504
OtArmsA.BrickColor = BrickColor.new("Pink")
505
OtArmsA.CanCollide = false
506
local OtArmsA2 = Instance.new("SpecialMesh",OtArmsA)
507
OtArmsA2.MeshId = "rbxassetid://3429797627"
508
OtArmsA2.Scale = Vector3.new(0.2,0.2,0.2)
509
local OtArmsA3 = Instance.new("Weld",OtArmsA)
510
OtArmsA3.Part0 = SRA
511
OtArmsA3.Part1 = OtArmsA
512
OtArmsA3.C0 = CFrame.new(0.65,0.1,0)*CFrame.Angles(0,3,0)
513
local Abs = Instance.new("Part",Stand)
514
Abs.BrickColor = BrickColor.new("White")
515
Abs.CanCollide = false
516
local Abs2 = Instance.new("SpecialMesh",Abs)
517
Abs2.MeshId = "rbxassetid://958074736"
518
Abs2.Scale = Vector3.new(0.009,0.01,0.01)
519
local Abs3 = Instance.new("Weld",Abs)
520
Abs3.Part0 = ST
521
Abs3.Part1 = Abs
522
Abs3.C0 = CFrame.new(0,0.2,-0.5)*CFrame.Angles(-12.4,0,0)
523
Humanoid.Animator.Parent = nil
524
Character.Animate.Parent = nil
525
mas = Instance.new("Model",game:GetService("Lighting"))
526
WeldConstraint0 = Instance.new("WeldConstraint")
527
WeldConstraint1 = Instance.new("WeldConstraint")
528
WeldConstraint2 = Instance.new("WeldConstraint")
529
WeldConstraint3 = Instance.new("WeldConstraint")
530
WeldConstraint4 = Instance.new("WeldConstraint")
531
WeldConstraint5 = Instance.new("WeldConstraint")
532
WeldConstraint6 = Instance.new("WeldConstraint")
533
WeldConstraint7 = Instance.new("WeldConstraint")
534
WeldConstraint8 = Instance.new("WeldConstraint")
535
WeldConstraint9 = Instance.new("WeldConstraint")
536
WeldConstraint10 = Instance.new("WeldConstraint")
537
WeldConstraint11 = Instance.new("WeldConstraint")
538
WeldConstraint12 = Instance.new("WeldConstraint")
539
WeldConstraint13 = Instance.new("WeldConstraint")
540
Part14 = Instance.new("Part")
541
Part15 = Instance.new("Part")
542
WeldConstraint16 = Instance.new("WeldConstraint")
543
WeldConstraint17 = Instance.new("WeldConstraint")
544
WeldConstraint18 = Instance.new("WeldConstraint")
545
WeldConstraint19 = Instance.new("WeldConstraint")
546
WeldConstraint20 = Instance.new("WeldConstraint")
547
WeldConstraint21 = Instance.new("WeldConstraint")
548
WeldConstraint22 = Instance.new("WeldConstraint")
549
WeldConstraint23 = Instance.new("WeldConstraint")
550
WeldConstraint24 = Instance.new("WeldConstraint")
551
WeldConstraint25 = Instance.new("WeldConstraint")
552
WeldConstraint26 = Instance.new("WeldConstraint")
553
WeldConstraint27 = Instance.new("WeldConstraint")
554
WeldConstraint28 = Instance.new("WeldConstraint")
555
WeldConstraint29 = Instance.new("WeldConstraint")
556
Part30 = Instance.new("Part")
557
Part31 = Instance.new("Part")
558
Part32 = Instance.new("Part")
559
Part33 = Instance.new("Part")
560
Part34 = Instance.new("Part")
561
Part35 = Instance.new("Part")
562
Part36 = Instance.new("Part")
563
Part37 = Instance.new("Part")
564
Part38 = Instance.new("Part")
565
Part39 = Instance.new("Part")
566
Part40 = Instance.new("Part")
567
Part41 = Instance.new("Part")
568
Part42 = Instance.new("Part")
569
WeldConstraint20.Parent = Part15
570
WeldConstraint20.Part0 = Part15
571
WeldConstraint20.Part1 = Part33
572
WeldConstraint22.Parent = Part15
573
WeldConstraint22.Part0 = Part15
574
WeldConstraint22.Part1 = Part35
575
WeldConstraint21.Parent = Part15
576
WeldConstraint21.Part0 = Part15
577
WeldConstraint21.Part1 = Part34
578
WeldConstraint23.Parent = Part15
579
WeldConstraint23.Part0 = Part15
580
WeldConstraint23.Part1 = Part36
581
WeldConstraint24.Parent = Part15
582
WeldConstraint24.Part0 = Part15
583
WeldConstraint24.Part1 = Part37
584
WeldConstraint25.Parent = Part15
585
WeldConstraint25.Part0 = Part15
586
WeldConstraint25.Part1 = Part38
587
WeldConstraint26.Parent = Part15
588
WeldConstraint26.Part0 = Part15
589
WeldConstraint26.Part1 = Part39
590
WeldConstraint27.Parent = Part15
591
WeldConstraint27.Part0 = Part15
592
WeldConstraint27.Part1 = Part40
593
WeldConstraint29.Parent = Part15
594
WeldConstraint29.Part0 = Part15
595
WeldConstraint29.Part1 = Part42
596
WeldConstraint28.Parent = Part15
597
WeldConstraint28.Part0 = Part15
598
WeldConstraint28.Part1 = Part41
599
WeldConstraint16.Parent = Part15
600
WeldConstraint16.Part0 = Part15
601
WeldConstraint16.Part1 = Part14
602
WeldConstraint17.Parent = Part15
603
WeldConstraint17.Part0 = Part15
604
WeldConstraint17.Part1 = Part30
605
WeldConstraint18.Parent = Part15
606
WeldConstraint18.Part0 = Part15
607
WeldConstraint18.Part1 = Part31
608
WeldConstraint19.Parent = Part15
609
WeldConstraint19.Part0 = Part15
610
WeldConstraint19.Part1 = Part32
611
Part14.Name = "Glove"
612
Part14.Parent = mas
613
Part14.CFrame = CFrame.new(-5.02166224, 2.51579881, -1.10017455, -0.999604464, 0, 0.0281260125, 0, 1, 0, -0.0281260125, 0, -0.999604464)
614
Part14.Orientation = Vector3.new(0, 178.389999, 0)
615
Part14.Position = Vector3.new(-5.02166224, 2.51579881, -1.10017455)
616
Part14.Rotation = Vector3.new(-180, 1.61000001, -180)
617
Part14.Color = Color3.new(0.972549, 0.972549, 0.972549)
618
Part14.Size = Vector3.new(0.830001354, 1.06999958, 1.04000032)
619
Part14.BottomSurface = Enum.SurfaceType.Smooth
620
Part14.BrickColor = BrickColor.new("White")
621
Part14.CanCollide = false
622
Part14.Material = Enum.Material.SmoothPlastic
623
Part14.TopSurface = Enum.SurfaceType.Smooth
624
Part14.brickColor = BrickColor.new("White")
625
Part15.Name = "LeftHandle"
626
Part15.Parent = mas
627
Part15.CFrame = CFrame.new(-5.38319588, 3.51649904, -1.08419061, -0.999990106, 0, 0.00455299765, 0, 1, 0, -0.00455299765, 0, -0.999990106)
628
Part15.Orientation = Vector3.new(0, 179.73999, 0)
629
Part15.Position = Vector3.new(-5.38319588, 3.51649904, -1.08419061)
630
Part15.Rotation = Vector3.new(-180, 0.25999999, -180)
631
Part15.Color = Color3.new(1, 1, 0)
632
Part15.Size = Vector3.new(0.211860612, 0.211860612, 0.211860612)
633
Part15.BottomSurface = Enum.SurfaceType.Smooth
634
Part15.BrickColor = BrickColor.new("White")
635
Part15.CanCollide = false
636
Part15.Material = Enum.Material.SmoothPlastic
637
Part15.TopSurface = Enum.SurfaceType.Smooth
638
Part15.brickColor = BrickColor.new("White")
639
Part15.Shape = Enum.PartType.Ball
640
WeldConstraint16.Parent = Part15
641
WeldConstraint16.Part0 = Part15
642
WeldConstraint16.Part1 = Part14
643
WeldConstraint17.Parent = Part15
644
WeldConstraint17.Part0 = Part15
645
WeldConstraint17.Part1 = Part30
646
WeldConstraint18.Parent = Part15
647
WeldConstraint18.Part0 = Part15
648
WeldConstraint18.Part1 = Part31
649
WeldConstraint19.Parent = Part15
650
WeldConstraint19.Part0 = Part15
651
WeldConstraint19.Part1 = Part32
652
WeldConstraint20.Parent = Part15
653
WeldConstraint20.Part0 = Part15
654
WeldConstraint20.Part1 = Part33
655
WeldConstraint21.Parent = Part15
656
WeldConstraint21.Part0 = Part15
657
WeldConstraint21.Part1 = Part34
658
WeldConstraint22.Parent = Part15
659
WeldConstraint22.Part0 = Part15
660
WeldConstraint22.Part1 = Part35
661
WeldConstraint23.Parent = Part15
662
WeldConstraint23.Part0 = Part15
663
WeldConstraint23.Part1 = Part36
664
WeldConstraint24.Parent = Part15
665
WeldConstraint24.Part0 = Part15
666
WeldConstraint24.Part1 = Part37
667
WeldConstraint25.Parent = Part15
668
WeldConstraint25.Part0 = Part15
669
WeldConstraint25.Part1 = Part38
670
WeldConstraint26.Parent = Part15
671
WeldConstraint26.Part0 = Part15
672
WeldConstraint26.Part1 = Part39
673
WeldConstraint27.Parent = Part15
674
WeldConstraint27.Part0 = Part15
675
WeldConstraint27.Part1 = Part40
676
WeldConstraint28.Parent = Part15
677
WeldConstraint28.Part0 = Part15
678
WeldConstraint28.Part1 = Part41
679
WeldConstraint29.Parent = Part15
680
WeldConstraint29.Part0 = Part15
681
WeldConstraint29.Part1 = Part42
682
Part30.Parent = mas
683
Part30.CFrame = CFrame.new(-5.44359446, 2.70850396, -0.860742211, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
684
Part30.Orientation = Vector3.new(0, 178.389999, 0)
685
Part30.Position = Vector3.new(-5.44359446, 2.70850396, -0.860742211)
686
Part30.Rotation = Vector3.new(-180, 1.61000001, -180)
687
Part30.Color = Color3.new(1, 1, 0)
688
Part30.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
689
Part30.BottomSurface = Enum.SurfaceType.Smooth
690
Part30.BrickColor = BrickColor.new("White")
691
Part30.CanCollide = false
692
Part30.Material = Enum.Material.SmoothPlastic
693
Part30.TopSurface = Enum.SurfaceType.Smooth
694
Part30.brickColor = BrickColor.new("White")
695
Part30.Shape = Enum.PartType.Ball
696
Part31.Parent = mas
697
Part31.CFrame = CFrame.new(-5.43280172, 2.54659009, -1.24430549, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
698
Part31.Orientation = Vector3.new(0, 178.389999, 0)
699
Part31.Position = Vector3.new(-5.43280172, 2.54659009, -1.24430549)
700
Part31.Rotation = Vector3.new(-180, 1.61000001, -180)
701
Part31.Color = Color3.new(1, 1, 0)
702
Part31.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
703
Part31.BottomSurface = Enum.SurfaceType.Smooth
704
Part31.BrickColor = BrickColor.new("White")
705
Part31.CanCollide = false
706
Part31.Material = Enum.Material.SmoothPlastic
707
Part31.TopSurface = Enum.SurfaceType.Smooth
708
Part31.brickColor = BrickColor.new("Pink")
709
Part31.Shape = Enum.PartType.Ball
710
Part32.Parent = mas
711
Part32.CFrame = CFrame.new(-5.43926716, 2.70850396, -1.01440942, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
712
Part32.Orientation = Vector3.new(0, 178.389999, 0)
713
Part32.Position = Vector3.new(-5.43926716, 2.70850396, -1.01440942)
714
Part32.Rotation = Vector3.new(-180, 1.61000001, -180)
715
Part32.Color = Color3.new(1, 1, 0)
716
Part32.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
717
Part32.BottomSurface = Enum.SurfaceType.Smooth
718
Part32.BrickColor = BrickColor.new("White")
719
Part32.CanCollide = false
720
Part32.Material = Enum.Material.SmoothPlastic
721
Part32.TopSurface = Enum.SurfaceType.Smooth
722
Part32.brickColor = BrickColor.new("White")
723
Part32.Shape = Enum.PartType.Ball
724
Part33.Parent = mas
725
Part33.CFrame = CFrame.new(-5.43478155, 2.70850396, -1.17381823, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
726
Part33.Orientation = Vector3.new(0, 178.389999, 0)
727
Part33.Position = Vector3.new(-5.43478155, 2.70850396, -1.17381823)
728
Part33.Rotation = Vector3.new(-180, 1.61000001, -180)
729
Part33.Color = Color3.new(1, 1, 0)
730
Part33.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
731
Part33.BottomSurface = Enum.SurfaceType.Smooth
732
Part33.BrickColor = BrickColor.new("White")
733
Part33.CanCollide = false
734
Part33.Material = Enum.Material.SmoothPlastic
735
Part33.TopSurface = Enum.SurfaceType.Smooth
736
Part33.brickColor = BrickColor.new("White")
737
Part33.Shape = Enum.PartType.Ball
738
Part34.Parent = mas
739
Part34.CFrame = CFrame.new(-5.43068886, 2.70850396, -1.31938517, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
740
Part34.Orientation = Vector3.new(0, 178.389999, 0)
741
Part34.Position = Vector3.new(-5.43068886, 2.70850396, -1.31938517)
742
Part34.Rotation = Vector3.new(-180, 1.61000001, -180)
743
Part34.Color = Color3.new(1, 1, 0)
744
Part34.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
745
Part34.BottomSurface = Enum.SurfaceType.Smooth
746
Part34.BrickColor = BrickColor.new("White")
747
Part34.CanCollide = false
748
Part34.Material = Enum.Material.SmoothPlastic
749
Part34.TopSurface = Enum.SurfaceType.Smooth
750
Part34.brickColor = BrickColor.new("White")
751
Part34.Shape = Enum.PartType.Ball
752
Part35.Parent = mas
753
Part35.CFrame = CFrame.new(-5.43728685, 2.54659009, -1.0848968, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
754
Part35.Orientation = Vector3.new(0, 178.389999, 0)
755
Part35.Position = Vector3.new(-5.43728685, 2.54659009, -1.0848968)
756
Part35.Rotation = Vector3.new(-180, 1.61000001, -180)
757
Part35.Color = Color3.new(1, 1, 0)
758
Part35.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
759
Part35.BottomSurface = Enum.SurfaceType.Smooth
760
Part35.BrickColor = BrickColor.new("White")
761
Part35.CanCollide = false
762
Part35.Material = Enum.Material.SmoothPlastic
763
Part35.TopSurface = Enum.SurfaceType.Smooth
764
Part35.brickColor = BrickColor.new("Pink")
765
Part35.Shape = Enum.PartType.Ball
766
Part36.Parent = mas
767
Part36.CFrame = CFrame.new(-5.44160986, 2.54659009, -0.931219518, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
768
Part36.Orientation = Vector3.new(0, 178.389999, 0)
769
Part36.Position = Vector3.new(-5.44160986, 2.54659009, -0.931219518)
770
Part36.Rotation = Vector3.new(-180, 1.61000001, -180)
771
Part36.Color = Color3.new(1, 1, 0)
772
Part36.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
773
Part36.BottomSurface = Enum.SurfaceType.Smooth
774
Part36.BrickColor = BrickColor.new("White")
775
Part36.CanCollide = false
776
Part36.Material = Enum.Material.SmoothPlastic
777
Part36.TopSurface = Enum.SurfaceType.Smooth
778
Part36.brickColor = BrickColor.new("White")
779
Part36.Shape = Enum.PartType.Ball
780
Part37.Parent = mas
781
Part37.CFrame = CFrame.new(-5.4347682, 2.38718915, -1.17450416, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
782
Part37.Orientation = Vector3.new(0, 178.389999, 0)
783
Part37.Position = Vector3.new(-5.4347682, 2.38718915, -1.17450416)
784
Part37.Rotation = Vector3.new(-180, 1.61000001, -180)
785
Part37.Color = Color3.new(1, 1, 0)
786
Part37.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
787
Part37.BottomSurface = Enum.SurfaceType.Smooth
788
Part37.BrickColor = BrickColor.new("White")
789
Part37.CanCollide = false
790
Part37.Material = Enum.Material.SmoothPlastic
791
Part37.TopSurface = Enum.SurfaceType.Smooth
792
Part37.brickColor = BrickColor.new("White")
793
Part37.Shape = Enum.PartType.Ball
794
Part38.Parent = mas
795
Part38.CFrame = CFrame.new(-5.43925047, 2.38718915, -1.01509559, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
796
Part38.Orientation = Vector3.new(0, 178.389999, 0)
797
Part38.Position = Vector3.new(-5.43925047, 2.38718915, -1.01509559)
798
Part38.Rotation = Vector3.new(-180, 1.61000001, -180)
799
Part38.Color = Color3.new(1, 1, 0)
800
Part38.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
801
Part38.BottomSurface = Enum.SurfaceType.Smooth
802
Part38.BrickColor = BrickColor.new("White")
803
Part38.CanCollide = false
804
Part38.Material = Enum.Material.SmoothPlastic
805
Part38.TopSurface = Enum.SurfaceType.Smooth
806
Part38.brickColor = BrickColor.new("White")
807
Part38.Shape = Enum.PartType.Ball
808
Part39.Parent = mas
809
Part39.CFrame = CFrame.new(-5.43697119, 2.22288823, -1.09609091, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
810
Part39.Orientation = Vector3.new(0, 178.389999, 0)
811
Part39.Position = Vector3.new(-5.43697119, 2.22288823, -1.09609091)
812
Part39.Rotation = Vector3.new(-180, 1.61000001, -180)
813
Part39.Color = Color3.new(1, 1, 0)
814
Part39.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
815
Part39.BottomSurface = Enum.SurfaceType.Smooth
816
Part39.BrickColor = BrickColor.new("White")
817
Part39.CanCollide = false
818
Part39.Material = Enum.Material.SmoothPlastic
819
Part39.TopSurface = Enum.SurfaceType.Smooth
820
Part39.brickColor = BrickColor.new("White")
821
Part39.Shape = Enum.PartType.Ball
822
Part40.Parent = mas
823
Part40.CFrame = CFrame.new(-5.03661871, 2.2724297, -1.10532296, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
824
Part40.Orientation = Vector3.new(0, 178.389999, 0)
825
Part40.Position = Vector3.new(-5.03661871, 2.2724297, -1.10532296)
826
Part40.Rotation = Vector3.new(-180, 1.61000001, -180)
827
Part40.Color = Color3.new(1, 1, 0)
828
Part40.Size = Vector3.new(0.830001056, 0.100000069, 1.04999971)
829
Part40.BottomSurface = Enum.SurfaceType.Smooth
830
Part40.BrickColor = BrickColor.new("White")
831
Part40.CanCollide = false
832
Part40.Material = Enum.Material.SmoothPlastic
833
Part40.TopSurface = Enum.SurfaceType.Smooth
834
Part40.brickColor = BrickColor.new("White")
835
Part41.Parent = mas
836
Part41.CFrame = CFrame.new(-5.03661871, 2.6140368, -1.10532296, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
837
Part41.Orientation = Vector3.new(0, 178.389999, 0)
838
Part41.Position = Vector3.new(-5.03661871, 2.6140368, -1.10532296)
839
Part41.Rotation = Vector3.new(-180, 1.61000001, -180)
840
Part41.Color = Color3.new(1, 1, 0)
841
Part41.Size = Vector3.new(0.830001056, 0.100000069, 1.04999971)
842
Part41.BottomSurface = Enum.SurfaceType.Smooth
843
Part41.BrickColor = BrickColor.new("White")
844
Part41.CanCollide = false
845
Part41.Material = Enum.Material.SmoothPlastic
846
Part41.TopSurface = Enum.SurfaceType.Smooth
847
Part41.brickColor = BrickColor.new("White")
848
Part42.Parent = mas
849
Part42.CFrame = CFrame.new(-4.98317862, 3.50830507, -1.10285795, -0.999992013, 0, 0.00455300882, 0, 1, 0, -0.00455300882, 0, -0.999992013)
850
Part42.Orientation = Vector3.new(0, 179.73999, 0)
851
Part42.Position = Vector3.new(-4.98317862, 3.50830507, -1.10285795)
852
Part42.Rotation = Vector3.new(-180, 0.25999999, -180)
853
Part42.Color = Color3.new(0.972549, 0.972549, 0.972549)
854
Part42.Size = Vector3.new(0.830001056, 0.110000081, 1.04999971)
855
Part42.BottomSurface = Enum.SurfaceType.Smooth
856
Part42.BrickColor = BrickColor.new("White")
857
Part42.CanCollide = false
858
Part42.Material = Enum.Material.SmoothPlastic
859
Part42.TopSurface = Enum.SurfaceType.Smooth
860
Part42.brickColor = BrickColor.new("White")
861
for i,v in pairs(mas:GetChildren()) do
862
    v.Parent = game:GetService("Players").LocalPlayer.Character.Stand
863
    pcall(function() v:MakeJoints() end)
864
end
865
local Wld = Instance.new("Weld",Part15)
866
Wld.Part0 = SLA
867
Wld.Part1 = Part15
868
Wld.C0 = CFrame.new(-0.49,0.55,0.03)*CFrame.Angles(0,3.15,0)
869
mas2 = Instance.new("Model",game:GetService("Lighting"))
870
WeldConstraint0 = Instance.new("WeldConstraint")
871
WeldConstraint1 = Instance.new("WeldConstraint")
872
WeldConstraint2 = Instance.new("WeldConstraint")
873
WeldConstraint3 = Instance.new("WeldConstraint")
874
WeldConstraint4 = Instance.new("WeldConstraint")
875
WeldConstraint5 = Instance.new("WeldConstraint")
876
WeldConstraint6 = Instance.new("WeldConstraint")
877
WeldConstraint7 = Instance.new("WeldConstraint")
878
WeldConstraint8 = Instance.new("WeldConstraint")
879
WeldConstraint9 = Instance.new("WeldConstraint")
880
WeldConstraint10 = Instance.new("WeldConstraint")
881
WeldConstraint11 = Instance.new("WeldConstraint")
882
WeldConstraint12 = Instance.new("WeldConstraint")
883
WeldConstraint13 = Instance.new("WeldConstraint")
884
Part14 = Instance.new("Part")
885
Part15 = Instance.new("Part")
886
WeldConstraint16 = Instance.new("WeldConstraint")
887
WeldConstraint17 = Instance.new("WeldConstraint")
888
WeldConstraint18 = Instance.new("WeldConstraint")
889
WeldConstraint19 = Instance.new("WeldConstraint")
890
WeldConstraint20 = Instance.new("WeldConstraint")
891
WeldConstraint21 = Instance.new("WeldConstraint")
892
WeldConstraint22 = Instance.new("WeldConstraint")
893
WeldConstraint23 = Instance.new("WeldConstraint")
894
WeldConstraint24 = Instance.new("WeldConstraint")
895
WeldConstraint25 = Instance.new("WeldConstraint")
896
WeldConstraint26 = Instance.new("WeldConstraint")
897
WeldConstraint27 = Instance.new("WeldConstraint")
898
WeldConstraint28 = Instance.new("WeldConstraint")
899
WeldConstraint29 = Instance.new("WeldConstraint")
900
Part30 = Instance.new("Part")
901
Part31 = Instance.new("Part")
902
Part32 = Instance.new("Part")
903
Part33 = Instance.new("Part")
904
Part34 = Instance.new("Part")
905
Part35 = Instance.new("Part")
906
Part36 = Instance.new("Part")
907
Part37 = Instance.new("Part")
908
Part38 = Instance.new("Part")
909
Part39 = Instance.new("Part")
910
Part40 = Instance.new("Part")
911
Part41 = Instance.new("Part")
912
Part42 = Instance.new("Part")
913
WeldConstraint20.Parent = Part15
914
WeldConstraint20.Part0 = Part15
915
WeldConstraint20.Part1 = Part33
916
WeldConstraint22.Parent = Part15
917
WeldConstraint22.Part0 = Part15
918
WeldConstraint22.Part1 = Part35
919
WeldConstraint21.Parent = Part15
920
WeldConstraint21.Part0 = Part15
921
WeldConstraint21.Part1 = Part34
922
WeldConstraint23.Parent = Part15
923
WeldConstraint23.Part0 = Part15
924
WeldConstraint23.Part1 = Part36
925
WeldConstraint24.Parent = Part15
926
WeldConstraint24.Part0 = Part15
927
WeldConstraint24.Part1 = Part37
928
WeldConstraint25.Parent = Part15
929
WeldConstraint25.Part0 = Part15
930
WeldConstraint25.Part1 = Part38
931
WeldConstraint26.Parent = Part15
932
WeldConstraint26.Part0 = Part15
933
WeldConstraint26.Part1 = Part39
934
WeldConstraint27.Parent = Part15
935
WeldConstraint27.Part0 = Part15
936
WeldConstraint27.Part1 = Part40
937
WeldConstraint29.Parent = Part15
938
WeldConstraint29.Part0 = Part15
939
WeldConstraint29.Part1 = Part42
940
WeldConstraint28.Parent = Part15
941
WeldConstraint28.Part0 = Part15
942
WeldConstraint28.Part1 = Part41
943
WeldConstraint16.Parent = Part15
944
WeldConstraint16.Part0 = Part15
945
WeldConstraint16.Part1 = Part14
946
WeldConstraint17.Parent = Part15
947
WeldConstraint17.Part0 = Part15
948
WeldConstraint17.Part1 = Part30
949
WeldConstraint18.Parent = Part15
950
WeldConstraint18.Part0 = Part15
951
WeldConstraint18.Part1 = Part31
952
WeldConstraint19.Parent = Part15
953
WeldConstraint19.Part0 = Part15
954
WeldConstraint19.Part1 = Part32
955
Part14.Name = "Glove"
956
Part14.Parent = mas2
957
Part14.CFrame = CFrame.new(-5.02166224, 2.51579881, -1.10017455, -0.999604464, 0, 0.0281260125, 0, 1, 0, -0.0281260125, 0, -0.999604464)
958
Part14.Orientation = Vector3.new(0, 178.389999, 0)
959
Part14.Position = Vector3.new(-5.02166224, 2.51579881, -1.10017455)
960
Part14.Rotation = Vector3.new(-180, 1.61000001, -180)
961
Part14.Color = Color3.new(0.972549, 0.972549, 0.972549)
962
Part14.Size = Vector3.new(0.830001354, 1.06999958, 1.04000032)
963
Part14.BottomSurface = Enum.SurfaceType.Smooth
964
Part14.BrickColor = BrickColor.new("White")
965
Part14.CanCollide = false
966
Part14.Material = Enum.Material.SmoothPlastic
967
Part14.TopSurface = Enum.SurfaceType.Smooth
968
Part14.brickColor = BrickColor.new("White")
969
Part15.Name = "LeftHandle"
970
Part15.Parent = mas2
971
Part15.CFrame = CFrame.new(-5.38319588, 3.51649904, -1.08419061, -0.999990106, 0, 0.00455299765, 0, 1, 0, -0.00455299765, 0, -0.999990106)
972
Part15.Orientation = Vector3.new(0, 179.73999, 0)
973
Part15.Position = Vector3.new(-5.38319588, 3.51649904, -1.08419061)
974
Part15.Rotation = Vector3.new(-180, 0.25999999, -180)
975
Part15.Color = Color3.new(1, 1, 0)
976
Part15.Size = Vector3.new(0.211860612, 0.211860612, 0.211860612)
977
Part15.BottomSurface = Enum.SurfaceType.Smooth
978
Part15.BrickColor = BrickColor.new("White")
979
Part15.CanCollide = false
980
Part15.Material = Enum.Material.SmoothPlastic
981
Part15.TopSurface = Enum.SurfaceType.Smooth
982
Part15.brickColor = BrickColor.new("White")
983
Part15.Shape = Enum.PartType.Ball
984
WeldConstraint16.Parent = Part15
985
WeldConstraint16.Part0 = Part15
986
WeldConstraint16.Part1 = Part14
987
WeldConstraint17.Parent = Part15
988
WeldConstraint17.Part0 = Part15
989
WeldConstraint17.Part1 = Part30
990
WeldConstraint18.Parent = Part15
991
WeldConstraint18.Part0 = Part15
992
WeldConstraint18.Part1 = Part31
993
WeldConstraint19.Parent = Part15
994
WeldConstraint19.Part0 = Part15
995
WeldConstraint19.Part1 = Part32
996
WeldConstraint20.Parent = Part15
997
WeldConstraint20.Part0 = Part15
998
WeldConstraint20.Part1 = Part33
999
WeldConstraint21.Parent = Part15
1000
WeldConstraint21.Part0 = Part15
1001
WeldConstraint21.Part1 = Part34
1002
WeldConstraint22.Parent = Part15
1003
WeldConstraint22.Part0 = Part15
1004
WeldConstraint22.Part1 = Part35
1005
WeldConstraint23.Parent = Part15
1006
WeldConstraint23.Part0 = Part15
1007
WeldConstraint23.Part1 = Part36
1008
WeldConstraint24.Parent = Part15
1009
WeldConstraint24.Part0 = Part15
1010
WeldConstraint24.Part1 = Part37
1011
WeldConstraint25.Parent = Part15
1012
WeldConstraint25.Part0 = Part15
1013
WeldConstraint25.Part1 = Part38
1014
WeldConstraint26.Parent = Part15
1015
WeldConstraint26.Part0 = Part15
1016
WeldConstraint26.Part1 = Part39
1017
WeldConstraint27.Parent = Part15
1018
WeldConstraint27.Part0 = Part15
1019
WeldConstraint27.Part1 = Part40
1020
WeldConstraint28.Parent = Part15
1021
WeldConstraint28.Part0 = Part15
1022
WeldConstraint28.Part1 = Part41
1023
WeldConstraint29.Parent = Part15
1024
WeldConstraint29.Part0 = Part15
1025
WeldConstraint29.Part1 = Part42
1026
Part30.Parent = mas2
1027
Part30.CFrame = CFrame.new(-5.44359446, 2.70850396, -0.860742211, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
1028
Part30.Orientation = Vector3.new(0, 178.389999, 0)
1029
Part30.Position = Vector3.new(-5.44359446, 2.70850396, -0.860742211)
1030
Part30.Rotation = Vector3.new(-180, 1.61000001, -180)
1031
Part30.Color = Color3.new(1, 1, 0)
1032
Part30.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
1033
Part30.BottomSurface = Enum.SurfaceType.Smooth
1034
Part30.BrickColor = BrickColor.new("White")
1035
Part30.CanCollide = false
1036
Part30.Material = Enum.Material.SmoothPlastic
1037
Part30.TopSurface = Enum.SurfaceType.Smooth
1038
Part30.brickColor = BrickColor.new("White")
1039
Part30.Shape = Enum.PartType.Ball
1040
Part31.Parent = mas2
1041
Part31.CFrame = CFrame.new(-5.43280172, 2.54659009, -1.24430549, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
1042
Part31.Orientation = Vector3.new(0, 178.389999, 0)
1043
Part31.Position = Vector3.new(-5.43280172, 2.54659009, -1.24430549)
1044
Part31.Rotation = Vector3.new(-180, 1.61000001, -180)
1045
Part31.Color = Color3.new(1, 1, 0)
1046
Part31.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
1047
Part31.BottomSurface = Enum.SurfaceType.Smooth
1048
Part31.BrickColor = BrickColor.new("White")
1049
Part31.CanCollide = false
1050
Part31.Material = Enum.Material.SmoothPlastic
1051
Part31.TopSurface = Enum.SurfaceType.Smooth
1052
Part31.brickColor = BrickColor.new("White")
1053
Part31.Shape = Enum.PartType.Ball
1054
Part32.Parent = mas2
1055
Part32.CFrame = CFrame.new(-5.43926716, 2.70850396, -1.01440942, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
1056
Part32.Orientation = Vector3.new(0, 178.389999, 0)
1057
Part32.Position = Vector3.new(-5.43926716, 2.70850396, -1.01440942)
1058
Part32.Rotation = Vector3.new(-180, 1.61000001, -180)
1059
Part32.Color = Color3.new(1, 1, 0)
1060
Part32.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
1061
Part32.BottomSurface = Enum.SurfaceType.Smooth
1062
Part32.BrickColor = BrickColor.new("White")
1063
Part32.CanCollide = false
1064
Part32.Material = Enum.Material.SmoothPlastic
1065
Part32.TopSurface = Enum.SurfaceType.Smooth
1066
Part32.brickColor = BrickColor.new("White")
1067
Part32.Shape = Enum.PartType.Ball
1068
Part33.Parent = mas2
1069
Part33.CFrame = CFrame.new(-5.43478155, 2.70850396, -1.17381823, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
1070
Part33.Orientation = Vector3.new(0, 178.389999, 0)
1071
Part33.Position = Vector3.new(-5.43478155, 2.70850396, -1.17381823)
1072
Part33.Rotation = Vector3.new(-180, 1.61000001, -180)
1073
Part33.Color = Color3.new(1, 1, 0)
1074
Part33.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
1075
Part33.BottomSurface = Enum.SurfaceType.Smooth
1076
Part33.BrickColor = BrickColor.new("White")
1077
Part33.CanCollide = false
1078
Part33.Material = Enum.Material.SmoothPlastic
1079
Part33.TopSurface = Enum.SurfaceType.Smooth
1080
Part33.brickColor = BrickColor.new("White")
1081
Part33.Shape = Enum.PartType.Ball
1082
Part34.Parent = mas2
1083
Part34.CFrame = CFrame.new(-5.43068886, 2.70850396, -1.31938517, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
1084
Part34.Orientation = Vector3.new(0, 178.389999, 0)
1085
Part34.Position = Vector3.new(-5.43068886, 2.70850396, -1.31938517)
1086
Part34.Rotation = Vector3.new(-180, 1.61000001, -180)
1087
Part34.Color = Color3.new(1, 1, 0)
1088
Part34.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
1089
Part34.BottomSurface = Enum.SurfaceType.Smooth
1090
Part34.BrickColor = BrickColor.new("White")
1091
Part34.CanCollide = false
1092
Part34.Material = Enum.Material.SmoothPlastic
1093
Part34.TopSurface = Enum.SurfaceType.Smooth
1094
Part34.brickColor = BrickColor.new("White")
1095
Part34.Shape = Enum.PartType.Ball
1096
Part35.Parent = mas2
1097
Part35.CFrame = CFrame.new(-5.43728685, 2.54659009, -1.0848968, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
1098
Part35.Orientation = Vector3.new(0, 178.389999, 0)
1099
Part35.Position = Vector3.new(-5.43728685, 2.54659009, -1.0848968)
1100
Part35.Rotation = Vector3.new(-180, 1.61000001, -180)
1101
Part35.Color = Color3.new(1, 1, 0)
1102
Part35.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
1103
Part35.BottomSurface = Enum.SurfaceType.Smooth
1104
Part35.BrickColor = BrickColor.new("White")
1105
Part35.CanCollide = false
1106
Part35.Material = Enum.Material.SmoothPlastic
1107
Part35.TopSurface = Enum.SurfaceType.Smooth
1108
Part35.brickColor = BrickColor.new("White")
1109
Part35.Shape = Enum.PartType.Ball
1110
Part36.Parent = mas2
1111
Part36.CFrame = CFrame.new(-5.44160986, 2.54659009, -0.931219518, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
1112
Part36.Orientation = Vector3.new(0, 178.389999, 0)
1113
Part36.Position = Vector3.new(-5.44160986, 2.54659009, -0.931219518)
1114
Part36.Rotation = Vector3.new(-180, 1.61000001, -180)
1115
Part36.Color = Color3.new(1, 1, 0)
1116
Part36.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
1117
Part36.BottomSurface = Enum.SurfaceType.Smooth
1118
Part36.BrickColor = BrickColor.new("White")
1119
Part36.CanCollide = false
1120
Part36.Material = Enum.Material.SmoothPlastic
1121
Part36.TopSurface = Enum.SurfaceType.Smooth
1122
Part36.brickColor = BrickColor.new("White")
1123
Part36.Shape = Enum.PartType.Ball
1124
Part37.Parent = mas2
1125
Part37.CFrame = CFrame.new(-5.4347682, 2.38718915, -1.17450416, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
1126
Part37.Orientation = Vector3.new(0, 178.389999, 0)
1127
Part37.Position = Vector3.new(-5.4347682, 2.38718915, -1.17450416)
1128
Part37.Rotation = Vector3.new(-180, 1.61000001, -180)
1129
Part37.Color = Color3.new(1, 1, 0)
1130
Part37.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
1131
Part37.BottomSurface = Enum.SurfaceType.Smooth
1132
Part37.BrickColor = BrickColor.new("White")
1133
Part37.CanCollide = false
1134
Part37.Material = Enum.Material.SmoothPlastic
1135
Part37.TopSurface = Enum.SurfaceType.Smooth
1136
Part37.brickColor = BrickColor.new("White")
1137
Part37.Shape = Enum.PartType.Ball
1138
Part38.Parent = mas2
1139
Part38.CFrame = CFrame.new(-5.43925047, 2.38718915, -1.01509559, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
1140
Part38.Orientation = Vector3.new(0, 178.389999, 0)
1141
Part38.Position = Vector3.new(-5.43925047, 2.38718915, -1.01509559)
1142
Part38.Rotation = Vector3.new(-180, 1.61000001, -180)
1143
Part38.Color = Color3.new(1, 1, 0)
1144
Part38.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
1145
Part38.BottomSurface = Enum.SurfaceType.Smooth
1146
Part38.BrickColor = BrickColor.new("White")
1147
Part38.CanCollide = false
1148
Part38.Material = Enum.Material.SmoothPlastic
1149
Part38.TopSurface = Enum.SurfaceType.Smooth
1150
Part38.brickColor = BrickColor.new("White")
1151
Part38.Shape = Enum.PartType.Ball
1152
Part39.Parent = mas2
1153
Part39.CFrame = CFrame.new(-5.43697119, 2.22288823, -1.09609091, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
1154
Part39.Orientation = Vector3.new(0, 178.389999, 0)
1155
Part39.Position = Vector3.new(-5.43697119, 2.22288823, -1.09609091)
1156
Part39.Rotation = Vector3.new(-180, 1.61000001, -180)
1157
Part39.Color = Color3.new(1, 1, 0)
1158
Part39.Size = Vector3.new(0.161860615, 0.161860615, 0.161860615)
1159
Part39.BottomSurface = Enum.SurfaceType.Smooth
1160
Part39.BrickColor = BrickColor.new("White")
1161
Part39.CanCollide = false
1162
Part39.Material = Enum.Material.SmoothPlastic
1163
Part39.TopSurface = Enum.SurfaceType.Smooth
1164
Part39.brickColor = BrickColor.new("White")
1165
Part39.Shape = Enum.PartType.Ball
1166
Part40.Parent = mas2
1167
Part40.CFrame = CFrame.new(-5.03661871, 2.2724297, -1.10532296, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
1168
Part40.Orientation = Vector3.new(0, 178.389999, 0)
1169
Part40.Position = Vector3.new(-5.03661871, 2.2724297, -1.10532296)
1170
Part40.Rotation = Vector3.new(-180, 1.61000001, -180)
1171
Part40.Color = Color3.new(1, 1, 0)
1172
Part40.Size = Vector3.new(0.830001056, 0.100000069, 1.04999971)
1173
Part40.BottomSurface = Enum.SurfaceType.Smooth
1174
Part40.BrickColor = BrickColor.new("White")
1175
Part40.CanCollide = false
1176
Part40.Material = Enum.Material.SmoothPlastic
1177
Part40.TopSurface = Enum.SurfaceType.Smooth
1178
Part40.brickColor = BrickColor.new("White")
1179
Part41.Parent = mas2
1180
Part41.CFrame = CFrame.new(-5.03661871, 2.6140368, -1.10532296, -0.999606609, 0, 0.0281260796, 0, 1, 0, -0.0281260796, 0, -0.999606609)
1181
Part41.Orientation = Vector3.new(0, 178.389999, 0)
1182
Part41.Position = Vector3.new(-5.03661871, 2.6140368, -1.10532296)
1183
Part41.Rotation = Vector3.new(-180, 1.61000001, -180)
1184
Part41.Color = Color3.new(1, 1, 0)
1185
Part41.Size = Vector3.new(0.830001056, 0.100000069, 1.04999971)
1186
Part41.BottomSurface = Enum.SurfaceType.Smooth
1187
Part41.BrickColor = BrickColor.new("White")
1188
Part41.CanCollide = false
1189
Part41.Material = Enum.Material.SmoothPlastic
1190
Part41.TopSurface = Enum.SurfaceType.Smooth
1191
Part41.brickColor = BrickColor.new("White")
1192
Part42.Parent = mas2
1193
Part42.CFrame = CFrame.new(-4.98317862, 3.50830507, -1.10285795, -0.999992013, 0, 0.00455300882, 0, 1, 0, -0.00455300882, 0, -0.999992013)
1194
Part42.Orientation = Vector3.new(0, 179.73999, 0)
1195
Part42.Position = Vector3.new(-4.98317862, 3.50830507, -1.10285795)
1196
Part42.Rotation = Vector3.new(-180, 0.25999999, -180)
1197
Part42.Color = Color3.new(0.972549, 0.972549, 0.972549)
1198
Part42.Size = Vector3.new(0.830001056, 0.110000081, 1.04999971)
1199
Part42.BottomSurface = Enum.SurfaceType.Smooth
1200
Part42.BrickColor = BrickColor.new("White")
1201
Part42.CanCollide = false
1202
Part42.Material = Enum.Material.SmoothPlastic
1203
Part42.TopSurface = Enum.SurfaceType.Smooth
1204
Part42.brickColor = BrickColor.new("White")
1205
for i,v in pairs(mas2:GetChildren()) do
1206
    v.Parent = game:GetService("Players").LocalPlayer.Character.Stand
1207
    pcall(function() v:MakeJoints() end)
1208
end
1209
local Wld = Instance.new("Weld",Part15)
1210
Wld.Part0 = SRA
1211
Wld.Part1 = Part15
1212
Wld.C0 = CFrame.new(0.49,0.55,-0.01)*CFrame.Angles(0,0,0)
1213
for i,v in pairs(mas:children()) do
1214
    if v:IsA("Part") then
1215
        v.Transparency = 1
1216
    end
1217
end
1218
for i,v in pairs(Character.Stand:children()) do
1219
    if v:IsA("Part") then
1220
        v.Transparency = 1
1221
        Face.Transparency = 1
1222
    end
1223
end
1224
local newMotor = function(part0, part1, c0, c1)
1225
    local w = Create('Motor'){
1226
        Parent = part0,
1227
        Part0 = part0,
1228
        Part1 = part1,
1229
        C0 = c0,
1230
        C1 = c1,
1231
    }
1232
    return w
1233
end
1234
function clerp(a, b, t)
1235
    return a:lerp(b, t)
1236
end
1237
 
1238
coroutine.resume(coroutine.create(function()
1239
while true do
1240
                ST.Anchored = false
1241-
    Humanoid.MaxHealth = 100
1241+
1242
                SRL.Anchored = false
1243
                SLL.Anchored = false
1244
                SRA.Anchored = false
1245
                SLA.Anchored = false
1246
    game:GetService("RunService").RenderStepped:wait()
1247
end
1248
end))
1249
RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
1250
NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
1251
 
1252
local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
1253
local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
1254
local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
1255
local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
1256
RootJoint.C1 = CFrame.new(0, 0, 0)
1257
RootJoint.C0 = CFrame.new(0, 0, 0)
1258
Torso.Neck.C1 = CFrame.new(0, 0, 0)
1259
Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
1260
 
1261
local rarmc1 = RW.C1
1262
local larmc1 = LW.C1
1263
local rlegc1 = RH.C1
1264
local llegc1 = LH.C1
1265
 
1266
local resetc1 = false
1267
 
1268
function PlayAnimationFromTable(table, speed, bool)
1269
    RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
1270
    Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
1271
    RW.C0 = clerp(RW.C0, table[3], speed)
1272
    LW.C0 = clerp(LW.C0, table[4], speed)
1273
    RH.C0 = clerp(RH.C0, table[5], speed)
1274
    LH.C0 = clerp(LH.C0, table[6], speed)
1275
    if bool == true then
1276
        if resetc1 == false then
1277
            resetc1 = true
1278
            RootJoint.C1 = RootJoint.C1
1279
            Torso.Neck.C1 = Torso.Neck.C1
1280
            RW.C1 = rarmc1
1281
            LW.C1 = larmc1
1282
            RH.C1 = rlegc1
1283
            LH.C1 = llegc1
1284
        end
1285
    end
1286
end
1287
 
1288
ArtificialHB = Create("BindableEvent", script){
1289
    Parent = script,
1290
    Name = "Heartbeat",
1291
}
1292
 
1293
script:WaitForChild("Heartbeat")
1294
 
1295
frame = 1 / 30
1296
tf = 0
1297
allowframeloss = false
1298
tossremainder = false
1299
lastframe = tick()
1300
script.Heartbeat:Fire()
1301
 
1302
game:GetService("RunService").Heartbeat:connect(function(s, p)
1303
    tf = tf + s
1304
    if tf >= frame then
1305
        if allowframeloss then
1306
            script.Heartbeat:Fire()
1307
            lastframe = tick()
1308
        else
1309
            for i = 1, math.floor(tf / frame) do
1310
                script.Heartbeat:Fire()
1311
            end
1312
            lastframe = tick()
1313
        end
1314
        if tossremainder then
1315
            tf = 0
1316
        else
1317
            tf = tf - frame * math.floor(tf / frame)
1318
        end
1319
    end
1320
end)
1321
 
1322
function swait(num)
1323
    if num == 0 or num == nil then
1324
        ArtificialHB.Event:wait()
1325
    else
1326
        for i = 0, num do
1327
            ArtificialHB.Event:wait()
1328
        end
1329
    end
1330
end
1331
 
1332
Mouse.KeyDown:connect(function(key)
1333
    if key == "q" then
1334
        if Change == false then
1335
            Stand()
1336
            Change = true
1337
        elseif Change == true then
1338
            UnStand()
1339
            Change = false
1340
        end
1341
    end
1342
end)
1343
 
1344
function Stand()
1345
    if D == false then
1346
        D = true
1347
        Pause = true
1348
        for i = 0,0.1,0.1 do
1349
        swait()
1350
        PlayAnimationFromTable({
1351
         CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
1352
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
1353
         CFrame.new(1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0,0,0),
1354
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
1355
         CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
1356
         CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
1357
        }, .5, false)
1358
        ST3.C0 = clerp(ST3.C0,CFrame.new(0,0,0)*CFrame.Angles(0,0,0),0.3)
1359
        end
1360
        coroutine.resume(coroutine.create(function()
1361
        for i = 0,1.2,0.1 do
1362
        swait()
1363
        PlayAnimationFromTable({
1364
         CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0.2, 0.5, 0),
1365
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.1, -0.4, 0),
1366
         CFrame.new(1.5,0.5,-0.5) * CFrame.new(0, 0, 0) * CFrame.Angles(1.45,0,0.7),
1367
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, 0),
1368
         CFrame.new(0.6,-2.1,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, -0.5, 0.1),
1369
         CFrame.new(-0.6,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, -0.1),
1370
        }, .5, false)
1371
        ST3.C0 = clerp(ST3.C0,CFrame.new(1,1.5,1.5)*CFrame.Angles(0,0,0),0.3)
1372
        end
1373
        Pause = false
1374
        end))
1375
        local Sound = Instance.new("Sound",ST)
1376
        Sound.Pitch = 1
1377
        Sound.Volume = 10
1378
        Sound.Looped = false
1379
        Sound.SoundId = "rbxassetid://1438146024"
1380
        Sound:play()
1381
        local Sound = Instance.new("Sound",ST)
1382
        Sound.Pitch = 1
1383
        Sound.Volume = 10
1384
        Sound.Looped = false
1385
        Sound.SoundId = "rbxassetid://3552355246"
1386
        Sound:play()
1387
        coroutine.resume(coroutine.create(function()
1388
        for i,v in pairs(mas:children()) do
1389
            if v:IsA("Part") then
1390
                coroutine.resume(coroutine.create(function()
1391
                v.Transparency = v.Transparency - 0.1
1392
                game:GetService("RunService").RenderStepped:wait() 
1393
                end))
1394
                v.Transparency = 1
1395
            end
1396
        end
1397
        end))
1398
        for i,v in pairs(Character.Stand:children()) do
1399
            if v:IsA("Part") then
1400
                coroutine.resume(coroutine.create(function()
1401
                for i = 1,11 do
1402
                v.Transparency = v.Transparency - 0.1
1403
                Face.Transparency = Face.Transparency - 0.1
1404
                game:GetService("RunService").RenderStepped:wait()
1405
                end
1406
                end))
1407
            end
1408
        end
1409
   CFuncs = {
1410
    Part = {
1411
      Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
1412
        local Part = Create("Part")({
1413
          Parent = Parent,
1414
          Reflectance = Reflectance,
1415
          Transparency = Transparency,
1416
          CanCollide = false,
1417
          Locked = true,
1418
          BrickColor = BrickColor.new(tostring(BColor)),
1419
          Name = Name,
1420
          Size = Size,
1421
          Material = Material
1422
        })
1423
        RemoveOutlines(Part)
1424
        return Part
1425
      end
1426
    },
1427
    Mesh = {
1428
      Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
1429
        local Msh = Create(Mesh)({
1430
          Parent = Part,
1431
          Offset = OffSet,
1432
          Scale = Scale
1433
        })
1434
        if Mesh == "SpecialMesh" then
1435
          Msh.MeshType = MeshType
1436
          Msh.MeshId = MeshId
1437
        end
1438
        return Msh
1439
      end
1440
    },
1441
    Weld = {
1442
      Create = function(Parent, Part0, Part1, C0, C1)
1443
        local Weld = Create("Weld")({
1444
          Parent = Parent,
1445
          Part0 = Part0,
1446
          Part1 = Part1,
1447
          C0 = C0,
1448
          C1 = C1
1449
        })
1450
        return Weld
1451
      end
1452
    },
1453
    Sound = {
1454
      Create = function(id, par, vol, pit)
1455
        local Sound = Create("Sound")({
1456
          Volume = vol,
1457
          Pitch = pit or 1,
1458
          SoundId = "rbxassetid://" .. id,
1459
          Parent = par or workspace
1460
        })
1461
        Sound:play()
1462
        game:GetService("Debris"):AddItem(Sound, 130)
1463
        return Sound
1464
      end
1465
    },
1466
    Decal = {
1467
      Create = function(Color, Texture, Transparency, Name, Parent)
1468
        local Decal = Create("Decal")({
1469
          Color3 = Color,
1470
          Texture = "rbxassetid://" .. Texture,
1471
          Transparency = Transparency,
1472
          Name = Name,
1473
          Parent = Parent
1474
        })
1475
        return Decal
1476
      end
1477
    },
1478
    BillboardGui = {
1479
      Create = function(Parent, Image, Position, Size)
1480
        local BillPar = CFuncs.Part.Create(Parent, "SmoothPlastic", 0, 1, BrickColor.new("Black"), "BillboardGuiPart", Vector3.new(1, 1, 1))
1481
        BillPar.CFrame = CFrame.new(Position)
1482
        local Bill = Create("BillboardGui")({
1483
          Parent = BillPar,
1484
          Adornee = BillPar,
1485
          Size = UDim2.new(1, 0, 1, 0),
1486
          SizeOffset = Vector2.new(Size, Size)
1487
        })
1488
        local d = Create("ImageLabel", Bill)({
1489
          Parent = Bill,
1490
          BackgroundTransparency = 1,
1491
          Size = UDim2.new(1, 0, 1, 0),
1492
          Image = "rbxassetid://" .. Image
1493
        })
1494
        return BillPar
1495
      end
1496
    },
1497
    ParticleEmitter = {
1498
      Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
1499
        local Particle = Create("ParticleEmitter")({
1500
          Parent = Parent,
1501
          Color = ColorSequence.new(Color1, Color2),
1502
          LightEmission = LightEmission,
1503
          Size = Size,
1504
          Texture = Texture,
1505
          Transparency = Transparency,
1506
          ZOffset = ZOffset,
1507
          Acceleration = Accel,
1508
          Drag = Drag,
1509
          LockedToPart = LockedToPart,
1510
          VelocityInheritance = VelocityInheritance,
1511
          EmissionDirection = EmissionDirection,
1512
          Enabled = Enabled,
1513
          Lifetime = LifeTime,
1514
          Rate = Rate,
1515
          Rotation = Rotation,
1516
          RotSpeed = RotSpeed,
1517
          Speed = Speed,
1518
          VelocitySpread = VelocitySpread
1519
        })
1520
        return Particle
1521
      end
1522
    },
1523
    CreateTemplate = {}
1524
  }
1525
cooldown = false
1526
        ZZZ = Mouse.KeyDown:connect(function(key)
1527
    if key == "q" then
1528
        if Change == false then
1529
            Stand()
1530
            Change = true
1531
        elseif Change == true then
1532
            UnStand()
1533
            Change = false
1534
        end
1535
    end
1536
    if key == ""  and cooldown == false and DDZ == false then
1537
   
1538
   game.Lighting.OutdoorAmbient=Color3.new(0,14,135)
1539
        game.Lighting.TimeOfDay="00:00:00"
1540
wait(0.000004)
1541
game.Lighting.OutdoorAmbient=Color3.new(135/255, 135/255, 128/255)
1542
        game.Lighting.TimeOfDay="15:00:00"
1543
        Torso.CFrame = CFrame.new(Vector3.new(Mouse.Hit.p.X,Mouse.Hit.p.Y+1.5,Mouse.Hit.p.Z),Torso.CFrame.p)
1544
   bam = CFuncs.Sound.Create("2553988018")
1545
bam.Volume = 10
1546
cooldown = true
1547
wait(0.3)
1548
bam:Destroy()
1549
cooldown = false
1550
 
1551
end
1552
            if key == "t" and Change == true then
1553
                Scorpion()
1554
            end
1555
            if key == "y" and Change == true then
1556
                Heal()
1557
            end
1558
            if key == "r" and Change == true then
1559
                LifeForceMuda()
1560
            end
1561
            if key == "h" and Change == true then
1562
                LifeForceMudano()
1563
            end
1564
            if key == "f" and Change == true then
1565
                RTZ()
1566
            end
1567
            if key == "e" and Change == true then
1568
                GERmuda()
1569
            end
1570
            if key == "z" and Change == true then
1571
                Jump()
1572
            end
1573
        end)
1574
1575
1576
        ZZZ1 = Mouse.KeyUp:connect(function(key)
1577
            if key == "e" and Change == true then
1578
                Stop()
1579
            end
1580
        end)
1581
        wait(0.5)
1582
        D = false
1583
    end
1584
end
1585
 
1586
function Scorpion()
1587
print("Gravity Throw!")
1588
    if D == false then
1589
        D = true
1590
        Pause = true
1591
        for i = 0,1.2,0.1 do
1592
        swait()
1593
        PlayAnimationFromTable({
1594
         CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
1595
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
1596
         CFrame.new(1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0,0,0),
1597
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
1598
         CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
1599
         CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
1600
        }, .5, false)
1601
        SRA3.C0 = clerp(SRA3.C0,CFrame.new(2,0.5,0)*CFrame.new(0,0,0)*CFrame.Angles(0,0,1.65),0.3)
1602
        SLA3.C0 = clerp(SLA3.C0,CFrame.new(-1.5,0,0)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),0.3)
1603
        SRL3.C0 = clerp(SRL3.C0,CFrame.new(0.5,-2,0)*CFrame.Angles(0,0,0),0.3)
1604
        SLL3.C0 = clerp(SLL3.C0,CFrame.new(-0.5,-2,0)*CFrame.Angles(0,0,0),0.3)
1605
        ST3.C0 = clerp(ST3.C0,CFrame.new(0,0.5,-2.7)*CFrame.new(0,0,0)*CFrame.Angles(0,1.55,0),0.3)
1606
        SH2.C0 = clerp(SH2.C0,CFrame.new(0,1.5,0)*CFrame.Angles(0,-1.55,0),0.3)
1607
        end
1608
1609
        coroutine.resume(coroutine.create(function()
1610
        wait(0.7)
1611
        Pause = false
1612
        end))
1613
        local Bl = Instance.new("Part",workspace)
1614
        Bl.CanCollide = false
1615
        Bl.Material = "Neon"
1616
        Bl.Shape = "Ball"
1617
        Bl.Size = Vector3.new(0.7,0.5,0.7)
1618
        Bl.BrickColor = BrickColor.new("Pink")
1619
        Bl.CFrame = RootPart.CFrame*CFrame.new(0,0,-5)*CFrame.new(0,0,0)*CFrame.Angles(0,-1.55,0)
1620
        local bl2 = Instance.new("SpecialMesh",Bl)
1621
        bl2.MeshId = "rbxassetid://0"
1622
        bl2.TextureId = "rbxassetid://0"
1623
        bl2.Scale = Vector3.new(0.5,0.1,0.5)
1624
                                                                        trail = Instance.new("Trail")
1625
        local attach1 = Instance.new("Attachment",Bl)
1626
        attach1.Position = Vector3.new(0,1,0.5)
1627
        local attach2 = Instance.new("Attachment",Bl)
1628
        attach2.Position = Vector3.new(0,-1,0)
1629
        trail.Attachment0 = attach1
1630
        trail.Attachment1 = attach2
1631
        trail.Texture = "rbxassetid://0"
1632
        trail.Color = ColorSequence.new(Color3.fromRGB(1,1,1),Color3.fromRGB(232, 186, 200))
1633
        trail.Lifetime = 0.8
1634
        trail.Parent = Bl
1635
        local Fl = Instance.new("BodyVelocity",Bl)
1636
        Fl.maxForce = Vector3.new(math.huge,math.huge,math.huge)
1637
if DDZ == true then
1638
        Fl.Velocity = RootPart.CFrame.lookVector*0
1639
         D = false
1640
repeat
1641
      wait()
1642
    until DDZ == false
1643
        Fl.Velocity = RootPart.CFrame.lookVector*160
1644
       elseif DDZ == false then
1645
        Fl.Velocity = RootPart.CFrame.lookVector*160
1646
            end
1647
        local Sound = Instance.new("Sound",ST)
1648
        Sound.Pitch = 1
1649
        Sound.Volume = 1
1650
        Sound.Looped = false
1651
        Sound.SoundId = "rbxassetid://1354419179"
1652
        Sound:play()
1653
1654
        local Ring = Instance.new("Part",RootPart)
1655
        Ring.Size = Vector3.new(1,1,1)
1656
        Ring.CanCollide = false
1657
        Ring.CFrame = RootPart.CFrame*CFrame.new(0,0,-9)*CFrame.Angles(0,0,0)
1658
        Ring.Anchored = true
1659
        Ring.BrickColor = BrickColor.new("White")
1660
        Ring.Transparency = 0
1661
        local Ring2 = Instance.new("SpecialMesh",Ring)
1662
        Ring2.MeshId = "rbxassetid://3270017"
1663
        Ring2.Scale = Vector3.new(1,1,0.1)
1664
        coroutine.resume(coroutine.create(function()
1665
        for i = 1,50 do
1666
            Ring2.Scale = Ring2.Scale + Vector3.new(1,1,0)
1667
            Ring.Transparency = Ring.Transparency + 0.07
1668
            game:GetService("RunService").RenderStepped:wait()
1669
        end
1670
        Ring:remove()
1671
        end))
1672
        Bl.Touched:connect(function(hit)
1673
            if hit.Parent:FindFirstChild("Torso") or hit.Parent:FindFirstChild("UpperTorso") and hit.Parent ~= nil and hit.Parent.Name ~= Character.Name then
1674
                Bl:remove()
1675
        local Sound = Instance.new("Sound",ST)
1676
        Sound.Pitch = 1
1677
        Sound.Volume = 2
1678
        Sound.Looped = false
1679
        Sound.SoundId = "rbxassetid://1146692362"
1680
        Sound:play()
1681
                hit.Parent.Humanoid:TakeDamage(20)
1682
                hit.Parent.Humanoid.WalkSpeed = 18
1683
                    local random = math.random(-3,3)
1684
                    local random2 = math.random(-3,3)
1685
                    local random3 = math.random(-3,3)
1686
                    local Ef = Instance.new("Part",workspace)
1687
                    Ef.Size = Vector3.new(0.3,0.3,2)
1688
                    Ef.CanCollide = false
1689
                    Ef.Material = "ForceField"
1690
                    Ef.BrickColor = BrickColor.new("Burlap")
1691
                    Ef.Anchored = true
1692
                    Ef.CFrame = hit.Parent.Torso.CFrame*CFrame.new(0,0,0)*CFrame.Angles(random,random2,random3)
1693
                    local Ef2 = Instance.new("SpecialMesh",Ef)
1694
                    Ef2.MeshType = "Sphere"
1695
                    Ef2.Scale = Vector3.new(0.1,0.1,0.1)
1696
                    local Part = Instance.new("Part",workspace)
1697
                    Part.Size = Vector3.new(0.3,0.3,2)
1698
                    Part.CanCollide = false
1699
                    Part.BrickColor = BrickColor.new("Burlap")
1700
                    Part.Material = "ForceField"
1701
                    Part.Anchored = true
1702
                    Part.CFrame = hit.Parent.Torso.CFrame*CFrame.new(0,0,0)*CFrame.Angles(random,random2,random3)
1703
                    local Part2 = Instance.new("SpecialMesh",Part)
1704
                    Part2.MeshType = "Sphere"
1705
                    Part2.Scale = Vector3.new(0.3,0.3,2)
1706
                    for i = 1,50 do
1707
                        Part2.Scale = Part2.Scale + Vector3.new(0.1,0.1,1)
1708
                        Part.Transparency = Part.Transparency + 0.07
1709
                        Ef2.Scale = Ef2.Scale + Vector3.new(0.3,0.3,2)
1710
                        Ef.Transparency = Ef.Transparency + 0.07
1711
                        game:GetService("RunService").RenderStepped:wait()
1712
                    end
1713
                    Part:remove()
1714
                    Ef:remove()
1715
            end
1716
        end)
1717
        wait(0.5)
1718
        D = false
1719
    end
1720
end
1721
 
1722
function Jump()
1723
    if DD == false then
1724
        DD = true
1725
        print("Stand Jump")
1726
        local Bod = Instance.new("BodyPosition",RootPart)
1727
        Bod.maxForce = Vector3.new(math.huge,math.huge,math.huge)
1728
        Bod.Position = RootPart.CFrame*CFrame.new(0,80,-80).p
1729
        local Ef = Instance.new("Part",workspace)
1730
        Ef.Size = Vector3.new(1,1,1)
1731
        Ef.CanCollide = false
1732
        Ef.Anchored = true
1733
        Ef.BrickColor = BrickColor.new("White")
1734
        Ef.Material = "Neon"
1735
        Ef.Shape = "Ball"
1736
        Ef.CFrame = ST.CFrame*CFrame.new(0,-2.3,0)
1737
        coroutine.resume(coroutine.create(function()
1738
        for i = 1,30 do
1739
            Ef.Size = Ef.Size + Vector3.new(0.8,0.8,0.8)
1740
            Ef.Transparency = Ef.Transparency + 0.07
1741
            game:GetService("RunService").RenderStepped:wait()
1742
        end
1743
        Ef:remove()
1744
        end))
1745
        wait(0.04)
1746
        Bod:remove()
1747
        wait(1)
1748
        DD = false
1749
    end
1750
end
1751
1752
function RTZ()
1753
        local Sound2 = Instance.new("Sound",ST)
1754
        Sound2.Pitch = 1
1755
        Sound2.Volume = 3
1756
        Sound2.Looped = true
1757
        Sound2.SoundId = "rbxassetid://2606732186"
1758
local Music1 = Instance.new("Sound",RootPart)
1759
    if DDZ == false then
1760
        DDZ = true
1761
Music:Pause()
1762
print("Dust Hazard.. Over Heaven!")
1763
        local S = Instance.new("Sound",ST)
1764
        S.SoundId = "rbxassetid://3077245880"
1765
        S.Pitch = 1
1766
        S.Volume = 10
1767
        S.Looped = false
1768
        S:play()
1769
        wait(1)
1770
        local Ora1 = Instance.new("Sound",ST)
1771
        Ora1.SoundId = "rbxassetid://4095610922"
1772
        Ora1.Pitch = 1
1773
        Ora1.Looped = false
1774
        Ora1.Volume = 5
1775
        Ora1:play()
1776
        DDZ = true
1777
        local Ef = Instance.new("Part",workspace)
1778
        Ef.Size = Vector3.new(1,1,1)
1779
        Ef.Material = "ForceField"
1780
        Ef.BrickColor = BrickColor.new("Black")
1781
        Ef.Transparency = 0.4
1782
        Ef.CFrame = RootPart.CFrame*CFrame.new(0,0,0)
1783
        Ef.Anchored = true
1784
        Ef.CanCollide = false
1785
        Ef.Shape = "Ball"
1786
        local Ef2 = Instance.new("SpecialMesh",Ef)
1787
        Ef2.MeshType = "Sphere"
1788
        Ef2.Scale = Vector3.new(1,1,1)
1789
        coroutine.resume(coroutine.create(function()
1790
        for i = 1,70 do
1791
            Ef2.Scale = Ef2.Scale + Vector3.new(1,1,1)
1792
            game:GetService("RunService").RenderStepped:wait()
1793
        end
1794
1795
        for i = 1,70 do
1796
            Ef2.Scale = Ef2.Scale - Vector3.new(1,1,1)
1797
            game:GetService("RunService").RenderStepped:wait()
1798
        end
1799
        Ef:remove()
1800
        end))
1801
        local HB = Instance.new("Part",workspace)
1802
        HB.CanCollide = false
1803
        HB.Anchored = true
1804
        HB.CFrame = RootPart.CFrame*CFrame.new(0,0,0)
1805
        HB.Size = Vector3.new(1000,1000,1000)
1806
        HB.Transparency = 1
1807
        HB.Touched:connect(function(hit)
1808
        DDZ = true
1809
                wait(1)
1810
        Sound2:play()
1811
SRA.BrickColor = BrickColor.new("Black")
1812
SLA.BrickColor = BrickColor.new("Black")
1813
SRL.BrickColor = BrickColor.new("White")
1814
ArmsA.BrickColor = BrickColor.new("Black")
1815
OtArmsA.BrickColor = BrickColor.new("Black")
1816
SLL.BrickColor = BrickColor.new("White")
1817
ARW.BrickColor = BrickColor.new("Black")
1818
Scarf.BrickColor = BrickColor.new("Black")
1819
AM.BrickColor = BrickColor.new("Black")
1820
Clot.BrickColor = BrickColor.new("Black")
1821
BClot.BrickColor = BrickColor.new("Black")
1822
ArmsA.BrickColor = BrickColor.new("Black")
1823
OtArmsA.BrickColor = BrickColor.new("Black")
1824
Part31.BrickColor = BrickColor.new("Black")
1825
Part35.BrickColor = BrickColor.new("Black")
1826
                wait(2)
1827
            if hit.Parent:FindFirstChild("Torso") and hit.Parent ~= nil and hit.Parent.Name ~= Character.Name then
1828
                hit.Parent.Torso.Anchored = false
1829
                hit.Parent.Head.Anchored = false
1830
                hit.Parent["Right Arm"].Anchored = false
1831
                hit.Parent["Left Arm"].Anchored = false
1832
                hit.Parent["Right Leg"].Anchored = false
1833
                hit.Parent["Left Leg"].Anchored = false
1834
                hit.Parent.Torso.Anchored = false
1835
                hit.Parent.Head.Anchored = false
1836
                hit.Parent["Right Arm"].Anchored = false
1837
                hit.Parent["Left Arm"].Anchored = false
1838
                hit.Parent["Right Leg"].Anchored = false
1839
                hit.Parent["Left Leg"].Anchored = false
1840
                hit.Parent.Humanoid.WalkSpeed = 25
1841
                hit.Parent.Torso.Transparency = 0
1842
                hit.Parent.Head.Transparency = 0
1843
                hit.Parent["Right Arm"].Transparency = 0
1844
                hit.Parent["Left Arm"].Transparency = 0
1845
                hit.Parent["Right Leg"].Transparency = 0
1846
                hit.Parent["Left Leg"].Transparency = 0
1847
           end
1848
        end)
1849
        DDZ = false
1850
        wait(5)
1851
        HB:remove()
1852
    end
1853
end
1854
1855
function LifeForceMuda()
1856
    if D == false then
1857
        D = true
1858
        Pause = true
1859
        local HB = Instance.new("Part",SRA)
1860
        HB.CanCollide = false
1861
        HB.Transparency = 1
1862
        HB.Size = Vector3.new(1,1,1)
1863
        local HB2 = Instance.new("Weld",HB)
1864
        HB2.Part0 = SRA
1865
        HB2.Part1 = HB
1866
        HB2.C0 = CFrame.new(0,0,0)
1867
        HB.Touched:connect(function(hit)
1868
            if hit.Parent:FindFirstChild("Torso") or hit.Parent:FindFirstChild("UpperTorso") and hit.Parent ~= nil and hit.Parent.Name ~= Character.Name then
1869
        local Ora3 = Instance.new("Sound",ST)
1870
        Ora3.SoundId = "rbxassetid://2648563122"
1871
        Ora3.Pitch = 1
1872
        Ora3.Looped = false
1873
        Ora3.Volume = 3
1874
        Ora3:play()
1875
                HB:remove()
1876
                hit.Parent.Humanoid:TakeDamage(30)
1877
                hit.Parent.Humanoid.WalkSpeed = 2
1878
                hit.Parent.Humanoid.PlatformStand = true
1879
                local Ef = Instance.new("Part",workspace)
1880
                Ef.Size = Vector3.new(0.1,0.1,0.1)
1881
                Ef.CanCollide = false
1882
                Ef.Anchored = true
1883
                Ef.Shape = "Ball"
1884
                Ef.CFrame = hit.Parent.Torso.CFrame*CFrame.new(0,0,0)
1885
                Ef.Material = "ForceField"
1886
                Ef.BrickColor = BrickColor.new("Burlap")
1887
                local Ef2 = Instance.new("SpecialMesh",Ef)
1888
                Ef2.MeshType = "Sphere"
1889
                Ef2.Scale = Vector3.new(0.1,0.1,0.1)
1890
                coroutine.resume(coroutine.create(function()
1891
                for i = 1,5 do
1892
                local random = math.random(-3,3)
1893
                local random2 = math.random(-3,3)
1894
                local random3 = math.random(-3,3)
1895
                local ZC = Instance.new("Part",workspace)
1896
                ZC.Size = Vector3.new(0.1,0.1,0.1)
1897
                ZC.CanCollide = false
1898
                ZC.Anchored = true
1899
                ZC.CFrame = hit.Parent.Torso.CFrame*CFrame.new(0,0,0)*CFrame.Angles(random,random2,random3)
1900
                ZC.Shape = "Ball"
1901
                ZC.Material = "ForceField"
1902
                ZC.BrickColor = BrickColor.new("Burlap")
1903
                local ZC2 = Instance.new("SpecialMesh",ZC)
1904
                ZC2.MeshType = "Sphere"
1905
                ZC2.Scale = Vector3.new(0.1,0.1,0.1)
1906
                coroutine.resume(coroutine.create(function()
1907
                for i = 1,100 do
1908
                    ZC2.Scale = ZC2.Scale + Vector3.new(0.3,0.3,2)
1909
                    ZC.Transparency = ZC.Transparency + 0.03
1910
                    game:GetService("RunService").RenderStepped:wait()
1911
                end
1912
                ZC:remove()
1913
                end))
1914
                end
1915
                end))
1916
                coroutine.resume(coroutine.create(function()
1917
                for i = 1,100 do
1918
                    Ef2.Scale = Ef2.Scale + Vector3.new(0.6,0.6,0.6)
1919
                    Ef.Transparency = Ef.Transparency + 0.03
1920
                    game:GetService("RunService").RenderStepped:wait()
1921
                end
1922
                Ef:remove()
1923
                end))
1924
                local Fl = Instance.new("BodyVelocity",hit.Parent.Head)
1925
                Fl.maxForce = Vector3.new(math.huge,math.huge,math.huge)
1926
                Fl.velocity = RootPart.CFrame.lookVector*50
1927
                wait(0.3)
1928
                Fl:remove()
1929
                wait(0.5)
1930
                hit.Parent.Humanoid.PlatformStand = false
1931
            end
1932
        end)
1933
        for i = 0,0.5,0.1 do
1934
        swait()
1935
        PlayAnimationFromTable({
1936
         CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0.2, 0.5, 0),
1937
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.1, -0.4, 0),
1938
         CFrame.new(1.5,0.5,-0.5) * CFrame.new(0, 0, 0) * CFrame.Angles(1.45,0,0.7),
1939
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, 0),
1940
         CFrame.new(0.6,-2.1,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, -0.5, 0.1),
1941
         CFrame.new(-0.6,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, -0.1),  
1942
        }, .5, false)
1943
        SRA3.C0 = clerp(SRA3.C0,CFrame.new(1.5,0,0)*CFrame.new(0,0.5,0.5)*CFrame.Angles(1.55,0,0.5),0.3)
1944
        SLA3.C0 = clerp(SLA3.C0,CFrame.new(-1.5,0,0)*CFrame.new(0,0,0)*CFrame.Angles(-0.1,0,0),0.3)
1945
        SRL3.C0 = clerp(SRL3.C0,CFrame.new(0.5,-1.8,-0.2)*CFrame.Angles(-0.5,0,0),0.3)
1946
        SLL3.C0 = clerp(SLL3.C0,CFrame.new(-0.5,-2,0)*CFrame.Angles(-0.2,0,0),0.3)
1947
        ST3.C0 = clerp(ST3.C0,CFrame.new(0,0,-1)*CFrame.new(0,0,0)*CFrame.Angles(0.2,-2,0),0.3)
1948
        SH2.C0 = clerp(SH2.C0,CFrame.new(0,1.5,0)*CFrame.Angles(0,0.5,0),0.3)
1949
        end
1950
        local Ora = Instance.new("Sound",ST)
1951
        Ora.SoundId = "rbxassetid://4463899554"
1952
        Ora.Pitch = 1
1953
        Ora.Looped = false
1954
        Ora.Volume = 7
1955
        Ora:play()
1956
        for i = 0,0.6,0.1 do
1957
        swait()
1958
        PlayAnimationFromTable({
1959
        CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0.2, 0.5, 0),
1960
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.1, -0.4, 0),
1961
         CFrame.new(1.5,0.5,-0.5) * CFrame.new(0, 0, 0) * CFrame.Angles(1.45,0,0.7),
1962
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, 0),
1963
         CFrame.new(0.6,-2.1,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, -0.5, 0.1),
1964
         CFrame.new(-0.6,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, -0.1),
1965
        }, .5, false)
1966
        SRA3.C0 = clerp(SRA3.C0,CFrame.new(1,0,0)*CFrame.new(0,1,-2)*CFrame.Angles(1.77,0,-0.5),0.5)
1967
        SLA3.C0 = clerp(SLA3.C0,CFrame.new(-1.5,0,0)*CFrame.new(0,0,0)*CFrame.Angles(-0.1,0,0),0.5)
1968
        SRL3.C0 = clerp(SRL3.C0,CFrame.new(0.5,-1.7,-0.3)*CFrame.Angles(-0.4,0,0),0.5)
1969
        SLL3.C0 = clerp(SLL3.C0,CFrame.new(-0.5,-1.8,0.2)*CFrame.Angles(-0.2,0,0),0.5)
1970
        ST3.C0 = clerp(ST3.C0,CFrame.new(0,0.4,-2)*CFrame.new(0,0,0)*CFrame.Angles(-0.2,0.8,0),0.5)
1971
        SH2.C0 = clerp(SH2.C0,CFrame.new(0,1.5,0)*CFrame.Angles(0.2,0,0),0.5)
1972
        end
1973
        coroutine.resume(coroutine.create(function()
1974
        wait(0.4)
1975
        HB:remove()
1976
        end))
1977
        Pause = false
1978
        wait(0.5)
1979
        D = false
1980
    end
1981
end
1982
1983
function LifeForceMudano()
1984
    if D == false then
1985
print("Gravity Distortion!")
1986
        D = true
1987
        Pause = true
1988
        local HB = Instance.new("Part",SRA)
1989
        HB.CanCollide = false
1990
        HB.Transparency = 1
1991
        HB.Size = Vector3.new(1,1,1)
1992
        local HB2 = Instance.new("Weld",HB)
1993
        HB2.Part0 = SRA
1994
        HB2.Part1 = HB
1995
        HB2.C0 = CFrame.new(0,0,0)
1996
        HB.Touched:connect(function(hit)
1997
        local Ora = Instance.new("Sound",ST)
1998
        Ora.SoundId = "rbxassetid://4095610922"
1999
        Ora.Pitch = 1
2000
        Ora.Looped = false
2001
        Ora.Volume = 5
2002
        Ora:play()
2003
        wait(1.5)
2004
            if hit.Parent:FindFirstChild("Torso") or hit.Parent:FindFirstChild("UpperTorso") and hit.Parent ~= nil and hit.Parent.Name ~= Character.Name then
2005
                HB:remove()
2006
                hit.Parent.Humanoid:TakeDamage(15)
2007
                hit.Parent.Humanoid.WalkSpeed = 2
2008
                hit.Parent.Humanoid.PlatformStand = true
2009
                local Ef = Instance.new("Part",workspace)
2010
                Ef.Size = Vector3.new(0.1,0.1,0.1)
2011
                Ef.CanCollide = false
2012
                Ef.Anchored = true
2013
                Ef.Shape = "Ball"
2014
                Ef.CFrame = hit.Parent.Torso.CFrame*CFrame.new(0,0,0)
2015
                Ef.Material = "ForceField"
2016
                Ef.BrickColor = BrickColor.new("Burlap")
2017
                local Ef2 = Instance.new("SpecialMesh",Ef)
2018
                Ef2.MeshType = "Sphere"
2019
                Ef2.Scale = Vector3.new(0.1,0.1,0.1)
2020
                coroutine.resume(coroutine.create(function()
2021
                for i = 1,5 do
2022
                local random = math.random(-3,3)
2023
                local random2 = math.random(-3,3)
2024
                local random3 = math.random(-3,3)
2025
                local ZC = Instance.new("Part",workspace)
2026
                ZC.Size = Vector3.new(0.1,0.1,0.1)
2027
                ZC.CanCollide = false
2028
                ZC.Anchored = true
2029
                ZC.CFrame = hit.Parent.Torso.CFrame*CFrame.new(0,0,0)*CFrame.Angles(random,random2,random3)
2030
                ZC.Shape = "Ball"
2031
                ZC.Material = "ForceField"
2032
                ZC.BrickColor = BrickColor.new("Burlap")
2033
                local ZC2 = Instance.new("SpecialMesh",ZC)
2034
                ZC2.MeshType = "Sphere"
2035
                ZC2.Scale = Vector3.new(0.1,0.1,0.1)
2036
                coroutine.resume(coroutine.create(function()
2037
                for i = 1,100 do
2038
                    ZC2.Scale = ZC2.Scale + Vector3.new(0.3,0.3,2)
2039
                    ZC.Transparency = ZC.Transparency + 0.03
2040
                    game:GetService("RunService").RenderStepped:wait()
2041
                end
2042
                ZC:remove()
2043
                end))
2044
                end
2045
                end))
2046
                coroutine.resume(coroutine.create(function()
2047
                for i = 1,100 do
2048
                    Ef2.Scale = Ef2.Scale + Vector3.new(0.6,0.6,0.6)
2049
                    Ef.Transparency = Ef.Transparency + 0.03
2050
                    game:GetService("RunService").RenderStepped:wait()
2051
                end
2052
                Ef:remove()
2053
                end))
2054
                local Fl = Instance.new("BodyVelocity",hit.Parent.Head)
2055
                Fl.maxForce = Vector3.new(math.huge,math.huge,math.huge)
2056
                Fl.velocity = RootPart.CFrame.lookVector*150
2057
                wait(0.3)
2058
                Fl:remove()
2059
                wait(0.5)
2060
                hit.Parent.Humanoid.PlatformStand = false
2061
            end
2062
        end)
2063
        for i = 0,0.5,0.1 do
2064
        swait()
2065
        PlayAnimationFromTable({
2066
         CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0.2, 0.5, 0),
2067
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.1, -0.4, 0),
2068
         CFrame.new(1.5,0.5,-0.5) * CFrame.new(0, 0, 0) * CFrame.Angles(1.45,0,0.7),
2069
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, 0),
2070
         CFrame.new(0.6,-2.1,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, -0.5, 0.1),
2071
         CFrame.new(-0.6,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, -0.1),  
2072
        }, .5, false)
2073
2074
        SRA3.C0 = clerp(SRA3.C0,CFrame.new(1.5,0,0)*CFrame.new(0,0.5,0.5)*CFrame.Angles(1.55,0,0.5),0.3)
2075
        SLA3.C0 = clerp(SLA3.C0,CFrame.new(-1.5,0,0)*CFrame.new(0,0,0)*CFrame.Angles(-0.1,0,0),0.3)
2076
        SRL3.C0 = clerp(SRL3.C0,CFrame.new(0.5,-1.8,-0.2)*CFrame.Angles(-0.5,0,0),0.3)
2077
        SLL3.C0 = clerp(SLL3.C0,CFrame.new(-0.5,-2,0)*CFrame.Angles(-0.2,0,0),0.3)
2078
        ST3.C0 = clerp(ST3.C0,CFrame.new(0,0,-1)*CFrame.new(0,0,0)*CFrame.Angles(0.2,-2,0),0.3)
2079
        SH2.C0 = clerp(SH2.C0,CFrame.new(0,1.5,0)*CFrame.Angles(0,0.5,0),0.3)
2080
        end
2081
        for i = 0,0.6,0.1 do
2082
        swait()
2083
        PlayAnimationFromTable({
2084
        CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0.2, 0.5, 0),
2085
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.1, -0.4, 0),
2086
         CFrame.new(1.5,0.5,-0.5) * CFrame.new(0, 0, 0) * CFrame.Angles(1.45,0,0.7),
2087
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, 0),
2088
         CFrame.new(0.6,-2.1,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, -0.5, 0.1),
2089
         CFrame.new(-0.6,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, -0.1),
2090
        }, .5, false)
2091
        SRA3.C0 = clerp(SRA3.C0,CFrame.new(1,0,0)*CFrame.new(0,1,-2)*CFrame.Angles(1.77,0,-0.5),0.5)
2092
        SLA3.C0 = clerp(SLA3.C0,CFrame.new(-1.5,0,0)*CFrame.new(0,0,0)*CFrame.Angles(-0.1,0,0),0.5)
2093
        SRL3.C0 = clerp(SRL3.C0,CFrame.new(0.5,-1.7,-0.3)*CFrame.Angles(-0.4,0,0),0.5)
2094
        SLL3.C0 = clerp(SLL3.C0,CFrame.new(-0.5,-1.8,0.2)*CFrame.Angles(-0.2,0,0),0.5)
2095
        ST3.C0 = clerp(ST3.C0,CFrame.new(0,0.4,-2)*CFrame.new(0,0,0)*CFrame.Angles(-0.2,0.8,0),0.5)
2096
        SH2.C0 = clerp(SH2.C0,CFrame.new(0,1.5,0)*CFrame.Angles(0.2,0,0),0.5)
2097
        end
2098
        coroutine.resume(coroutine.create(function()
2099
        wait(0.4)
2100
        HB:remove()
2101
        end))
2102
        Pause = false
2103
        wait(0.5)
2104
        D = false
2105
    end
2106
end
2107
function Heal()
2108
print("Heal!")
2109
    if D == false then
2110
        D = true
2111
        Pause = true
2112
        local HB = Instance.new("Part",SRA)
2113
        HB.CanCollide = false
2114
        HB.Transparency = 1
2115
        HB.Size = Vector3.new(1,1,1)
2116
        local HB2 = Instance.new("Weld",HB)
2117
        HB2.Part0 = SRA
2118
        HB2.Part1 = HB
2119
        HB2.C0 = CFrame.new(0,0,0)
2120
        HB.Touched:connect(function(hit)
2121
            if hit.Parent:FindFirstChild("Torso") or hit.Parent:FindFirstChild("UpperTorso") and hit.Parent ~= nil and hit.Parent.Name ~= Character.Name then
2122
                HB:remove()
2123
                hit.Parent.Humanoid:TakeDamage(-30)
2124
                hit.Parent.Humanoid.WalkSpeed = 18
2125
                hit.Parent.Humanoid.PlatformStand = true
2126
                local Ef = Instance.new("Part",workspace)
2127
                Ef.Size = Vector3.new(0.1,0.1,0.1)
2128
                Ef.CanCollide = false
2129
                Ef.Anchored = true
2130
                Ef.Shape = "Ball"
2131
                Ef.CFrame = hit.Parent.Torso.CFrame*CFrame.new(0,0,0)
2132
                Ef.Material = "ForceField"
2133
                Ef.BrickColor = BrickColor.new("Pink")
2134
                local Ef2 = Instance.new("SpecialMesh",Ef)
2135
                Ef2.MeshType = "Sphere"
2136
                Ef2.Scale = Vector3.new(0.1,0.1,0.1)
2137
                coroutine.resume(coroutine.create(function()
2138
                for i = 1,5 do
2139
                local random = math.random(-3,3)
2140
                local random2 = math.random(-3,3)
2141
                local random3 = math.random(-3,3)
2142
                local ZC = Instance.new("Part",workspace)
2143
                ZC.Size = Vector3.new(0.1,0.1,0.1)
2144
                ZC.CanCollide = false
2145
                ZC.Anchored = true
2146
                ZC.CFrame = hit.Parent.Torso.CFrame*CFrame.new(0,0,0)*CFrame.Angles(random,random2,random3)
2147
                ZC.Shape = "Ball"
2148
                ZC.Material = "ForceField"
2149
                ZC.BrickColor = BrickColor.new("Burlap")
2150
                local ZC2 = Instance.new("SpecialMesh",ZC)
2151
                ZC2.MeshType = "Sphere"
2152
                ZC2.Scale = Vector3.new(0.1,0.1,0.1)
2153
                coroutine.resume(coroutine.create(function()
2154
                for i = 1,100 do
2155
                    ZC2.Scale = ZC2.Scale + Vector3.new(0.3,0.3,2)
2156
                    ZC.Transparency = ZC.Transparency + 0.03
2157
                    game:GetService("RunService").RenderStepped:wait()
2158
                end
2159
                ZC:remove()
2160
                end))
2161
                end
2162
                end))
2163
                coroutine.resume(coroutine.create(function()
2164
                for i = 1,100 do
2165
                    Ef2.Scale = Ef2.Scale + Vector3.new(0.6,0.6,0.6)
2166
                    Ef.Transparency = Ef.Transparency + 0.03
2167
                    game:GetService("RunService").RenderStepped:wait()
2168
                end
2169
                Ef:remove()
2170
                end))
2171
                local Fl = Instance.new("BodyVelocity",hit.Parent.Head)
2172
                Fl.maxForce = Vector3.new(1,1,1)
2173
                Fl.velocity = RootPart.CFrame.lookVector*190
2174
                wait(0.3)
2175
                Fl:remove()
2176
                wait(0.5)
2177
                hit.Parent.Humanoid.PlatformStand = false
2178
            end
2179
        end)
2180
        for i = 0,0.5,0.1 do
2181
        swait()
2182
        PlayAnimationFromTable({
2183
         CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0.2, 0.5, 0),
2184
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.1, -0.4, 0),
2185
         CFrame.new(1.5,0.5,-0.5) * CFrame.new(0, 0, 0) * CFrame.Angles(1.45,0,0.7),
2186
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, 0),
2187
         CFrame.new(0.6,-2.1,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, -0.5, 0.1),
2188
         CFrame.new(-0.6,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, -0.1),  
2189
        }, .5, false)
2190
        SRA3.C0 = clerp(SRA3.C0,CFrame.new(1.5,0,0)*CFrame.new(0,0.5,0.5)*CFrame.Angles(1.55,0,0.5),0.3)
2191
        SLA3.C0 = clerp(SLA3.C0,CFrame.new(-1.5,0,0)*CFrame.new(0,0,0)*CFrame.Angles(-0.1,0,0),0.3)
2192
        SRL3.C0 = clerp(SRL3.C0,CFrame.new(0.5,-1.8,-0.2)*CFrame.Angles(-0.5,0,0),0.3)
2193
        SLL3.C0 = clerp(SLL3.C0,CFrame.new(-0.5,-2,0)*CFrame.Angles(-0.2,0,0),0.3)
2194
        ST3.C0 = clerp(ST3.C0,CFrame.new(0,0,-1)*CFrame.new(0,0,0)*CFrame.Angles(0.2,-2,0),0.3)
2195
        SH2.C0 = clerp(SH2.C0,CFrame.new(0,1.5,0)*CFrame.Angles(0,0.5,0),0.3)
2196
        end
2197
        local Ora = Instance.new("Sound",ST)
2198
        Ora.SoundId = "rbxassetid://4567255304"
2199
        Ora.Pitch = 1
2200
        Ora.Looped = false
2201
        Ora.Volume = 7
2202
        Ora:play()
2203
        for i = 0,0.6,0.1 do
2204
        swait()
2205
        PlayAnimationFromTable({
2206
        CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0.2, 0.5, 0),
2207
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.1, -0.4, 0),
2208
         CFrame.new(1.5,0.5,-0.5) * CFrame.new(0, 0, 0) * CFrame.Angles(1.45,0,0.7),
2209
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, 0),
2210
         CFrame.new(0.6,-2.1,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, -0.5, 0.1),
2211
         CFrame.new(-0.6,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, -0.1),
2212
        }, .5, false)
2213
        SRA3.C0 = clerp(SRA3.C0,CFrame.new(1,0,0)*CFrame.new(0,1,-2)*CFrame.Angles(1.77,0,-0.5),0.5)
2214
        SLA3.C0 = clerp(SLA3.C0,CFrame.new(-1.5,0,0)*CFrame.new(0,0,0)*CFrame.Angles(-0.1,0,0),0.5)
2215
        SRL3.C0 = clerp(SRL3.C0,CFrame.new(0.5,-1.7,-0.3)*CFrame.Angles(-0.4,0,0),0.5)
2216
        SLL3.C0 = clerp(SLL3.C0,CFrame.new(-0.5,-1.8,0.2)*CFrame.Angles(-0.2,0,0),0.5)
2217
        ST3.C0 = clerp(ST3.C0,CFrame.new(0,0.4,-2)*CFrame.new(0,0,0)*CFrame.Angles(-0.2,0.8,0),0.5)
2218
        SH2.C0 = clerp(SH2.C0,CFrame.new(0,1.5,0)*CFrame.Angles(0.2,0,0),0.5)
2219
        end
2220
        coroutine.resume(coroutine.create(function()
2221
        wait(0.4)
2222
        HB:remove()
2223
        end))
2224
        Pause = false
2225
        wait(0.5)
2226
        D = false
2227
    end
2228
end
2229
2230
function GERmuda()
2231
    if D == false then
2232
    print("Muda Barrage!")
2233
        D = true
2234
        Pause = true
2235
        Loop = true
2236
                                                                        trail = Instance.new("Trail")
2237
        local attach1 = Instance.new("Attachment",SRA)
2238
        attach1.Position = Vector3.new(0,1,0.5)
2239
        local attach2 = Instance.new("Attachment",SRA)
2240
        attach2.Position = Vector3.new(0,-1,0.5)
2241
        trail.Attachment0 = attach1
2242
        trail.Attachment1 = attach2
2243
        trail.Texture = "rbxassetid://1369718163"
2244
        trail.Color = ColorSequence.new(Color3.fromRGB(0,0,0),Color3.fromRGB(0, 0, 1))
2245
        trail.Lifetime = 1
2246
        trail.Parent = SRA
2247
                                                                        trail2 = Instance.new("Trail")
2248
        local attach1 = Instance.new("Attachment",SLA)
2249
        attach1.Position = Vector3.new(0,1,0.5)
2250
        local attach2 = Instance.new("Attachment",SLA)
2251
        attach2.Position = Vector3.new(0,-1,0.5)
2252
        trail2.Attachment0 = attach1
2253
        trail2.Attachment1 = attach2
2254
        trail2.Texture = "461231644"
2255
        trail2.Color = ColorSequence.new(Color3.fromRGB(0,0,0),Color3.fromRGB(232, 186, 200))
2256
        trail2.Lifetime = 1
2257
        trail2.Parent = SLA
2258
        SoundZ = Instance.new("Sound",ST)
2259
        SoundZ.SoundId = "rbxassetid://3443190191"
2260
        SoundZ.Volume = 10
2261
        SoundZ.Looped = true
2262
        SoundZ.Pitch = 1
2263
        SoundZ:play()
2264
        while Loop do
2265
            local HB = Instance.new("Part",SRA)
2266
            HB.CanCollide = false
2267
            HB.Transparency = 1
2268
            local HB2 = Instance.new("Weld",HB)
2269
            HB2.Part0 = SRA
2270
            HB2.Part1 = HB
2271
            HB2.C0 = CFrame.new(0,-1.1,0)
2272
            HB.Touched:connect(function(hit)
2273
                if hit.Parent:FindFirstChild("Humanoid") and hit.Parent ~= nil and hit.Parent.Name ~= Character.Name then
2274
                    hit.Parent.Humanoid:TakeDamage(0.3)
2275
                    hit.Parent.Humanoid.WalkSpeed = 18
2276
                    local random = math.random(-3,3)
2277
                    local random2 = math.random(-3,3)
2278
                    local random3 = math.random(-3,3)
2279
                    end
2280
            end)
2281
            for i = 0,0.15,0.1 do
2282
            swait()
2283
            PlayAnimationFromTable({
2284
         CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0.2, 0.5, 0),
2285
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.1, -0.4, 0),
2286
         CFrame.new(1.5,0.5,-0.5) * CFrame.new(0, 0, 0) * CFrame.Angles(1.45,0,0.7),
2287
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, 0),
2288
         CFrame.new(0.6,-2.1,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, -0.5, 0.1),
2289
         CFrame.new(-0.6,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, -0.1),
2290
        }, .5, false)
2291
            SRA3.C0 = clerp(SRA3.C0,CFrame.new(1,0,0)*CFrame.new(0,1,-4)*CFrame.Angles(2.2,0,-0.4),0.3)
2292
            SLA3.C0 = clerp(SLA3.C0,CFrame.new(-1.5,0,0)*CFrame.new(0,0.5,3)*CFrame.Angles(1.55,0,0.4),0.3)
2293
            SRL3.C0 = clerp(SRL3.C0,CFrame.new(0.5,-1,-0.2)*CFrame.Angles(-0.5,0,0),0.3)
2294
            SLL3.C0 = clerp(SLL3.C0,CFrame.new(-0.5,-1.8,0.3)*CFrame.Angles(-0.5,0,0),0.3)
2295
            ST3.C0 = clerp(ST3.C0,CFrame.new(0,0.5,-5)*CFrame.new(0,0,0)*CFrame.Angles(-0.3,1,0),0.3)
2296
            SH2.C0 = clerp(SH2.C0,CFrame.new(0,1.5,0)*CFrame.Angles(0.3,-0.5,0),0.3)
2297
            end
2298
            coroutine.resume(coroutine.create(function()
2299
                wait(1)
2300
                HB:remove()
2301
            end))
2302
            local CCB = Instance.new("Part",SRA)
2303
            CCB.CanCollide = false
2304
            CCB.Transparency = 1
2305
            local CCB2 = Instance.new("Weld",CCB)
2306
            CCB2.Part0 = SRA
2307
            CCB2.Part1 = CCB
2308
            CCB2.C0 = CFrame.new(0,-1.1,0)
2309
            CCB.Touched:connect(function(hit)
2310
                if hit.Parent:FindFirstChild("Humanoid") and hit.Parent ~= nil and hit.Parent.Name ~= Character.Name then
2311
                    CCB:remove()
2312
2313
                    hit.Parent.Humanoid:TakeDamage(1)
2314
                    hit.Parent.Humanoid.WalkSpeed = 18
2315
                    local random = math.random(3,3)
2316
                    local random2 = math.random(3,3)
2317
                    local random3 = math.random(3,3)
2318
                end
2319
            end)
2320
            for i = 0,0.15,0.1 do
2321
            swait()
2322
            PlayAnimationFromTable({
2323
         CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0.2, 0.5, 0),
2324
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.1, -0.4, 0),
2325
         CFrame.new(1.5,0.5,-0.5) * CFrame.new(0, 0, 0) * CFrame.Angles(1.45,0,0.7),
2326
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, 0),
2327
         CFrame.new(0.6,-2.1,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, -0.5, 0.1),
2328
         CFrame.new(-0.6,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0.2, -0.1),
2329
        }, .5, false)
2330
            SRA3.C0 = clerp(SRA3.C0,CFrame.new(1.5,0,0)*CFrame.new(0,0.5,3)*CFrame.Angles(1.55,2,0.4),0.3)
2331
            SLA3.C0 = clerp(SLA3.C0,CFrame.new(-1,0,0)*CFrame.new(0,1,-4)*CFrame.Angles(2.2,-2,0.4),0.3)
2332
            SRL3.C0 = clerp(SRL3.C0,CFrame.new(0.5,-1,-0.2)*CFrame.Angles(-0.5,0,0),0.3)
2333
            SLL3.C0 = clerp(SLL3.C0,CFrame.new(-0.5,-1.8,0.3)*CFrame.Angles(-0.5,0,0),0.3)
2334
            ST3.C0 = clerp(ST3.C0,CFrame.new(0,0.5,-2)*CFrame.new(0,0,0)*CFrame.Angles(-0.3,-1,0),0.3)
2335
            SH2.C0 = clerp(SH2.C0,CFrame.new(0,1.5,0)*CFrame.Angles(0.3,0.5,0),0.3)
2336
            end
2337
            coroutine.resume(coroutine.create(function()
2338
                wait(1)
2339
                CCB:remove()
2340
            end))
2341
            game:GetService("RunService").RenderStepped:wait()
2342
        end
2343
        wait(0.2)
2344
        D = false
2345
    end
2346
end
2347
 
2348
function Stop()
2349
    Pause = false
2350
if SoundZ ~= nil then
2351
    SoundZ:remove()
2352
end
2353
    Loop = false
2354
if trail ~= nil and trail2 ~= nil then
2355
   trail:remove()
2356
   trail2:remove()
2357
   end
2358
end
2359
 
2360
function UnStand()
2361
    if D == false then
2362
        D = true
2363
        Pause = true
2364
        coroutine.resume(coroutine.create(function()
2365
        for i = 0,1.2,0.1 do
2366
        swait()
2367
        PlayAnimationFromTable({
2368
         CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
2369
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
2370
         CFrame.new(1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0,0,0),
2371
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
2372
         CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
2373
         CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
2374
        }, .5, false)
2375
        ST3.C0 = clerp(ST3.C0,CFrame.new(0,0,0)*CFrame.Angles(0,0,0),0.3)
2376
        end
2377
        Pause = false
2378
        end))
2379
        for i,v in pairs(Character.Stand:children()) do
2380
            if v:IsA("Part") then
2381
                coroutine.resume(coroutine.create(function()
2382
                for i = 1,11 do
2383
                v.Transparency = v.Transparency + 0.1
2384
                Face.Transparency = Face.Transparency + 0.1
2385
                game:GetService("RunService").RenderStepped:wait()
2386
                end
2387
                end))
2388
            end
2389
        end
2390
        wait(0.5)
2391
        D = false
2392
       
2393
    end
2394
end
2395
 
2396
 
2397
New = function(Object, Parent, Name, Data)
2398
    local Object = Instance.new(Object)
2399
    for Index, Value in pairs(Data or {}) do
2400
        Object[Index] = Value
2401
    end
2402
    Object.Parent = Parent
2403
    Object.Name = Name
2404
    return Object
2405
end
2406
function rayCast(Position, Direction, Range, Ignore)
2407
    return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
2408
end
2409
 
2410
2411
 
2412
while true do
2413
    swait()
2414
    for i, v in pairs(Character:GetChildren()) do
2415
        if v:IsA("Part") then
2416
            v.Material = "SmoothPlastic"
2417
        elseif v:IsA("Accessory") then
2418
            v:WaitForChild("Handle").Material = "SmoothPlastic"
2419
        end
2420
    end
2421
 
2422
    Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
2423
    velocity = RootPart.Velocity.y
2424
    sine = sine + change
2425
    local hit, pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
2426
        if RootPart.Velocity.y > 1 and hit == nil then
2427
            Anim = "Jump"
2428
            if Pause == false then
2429
        PlayAnimationFromTable({
2430
          CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.4, 0, 0), -- Torso,
2431
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0.2, 0, 0), ----- Head
2432
         CFrame.new(1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2,0,0),  --- RightArm
2433
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0, 0),--LeftArm
2434
         CFrame.new(0.5,-1.6,-0.1) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.3, 0, 0), --RightLeg
2435
         CFrame.new(-0.5,-1.8,0.2) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0, 0), --LeftLeg
2436
        }, .3, false)
2437
        SRA3.C0 = clerp(SRA3.C0,CFrame.new(1.5,0,0)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),0.3)
2438
        SLA3.C0 = clerp(SLA3.C0,CFrame.new(-1.5,0,0)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),0.3)
2439
        SRL3.C0 = clerp(SRL3.C0,CFrame.new(0.5,-2,0)*CFrame.Angles(0,0,0),0.3)
2440
        SLL3.C0 = clerp(SLL3.C0,CFrame.new(-0.5,-2,0)*CFrame.Angles(0,0,0),0.3)
2441
        ST3.C0 = clerp(ST3.C0,CFrame.new(1,1.5,2)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),0.3)
2442
        SH2.C0 = clerp(SH2.C0,CFrame.new(0,1.5,0)*CFrame.Angles(0,0,0),0.3)
2443
                    end
2444
        elseif RootPart.Velocity.y < -1 and hit == nil then
2445
            Anim = "Fall"
2446
            if Pause == false then
2447
        PlayAnimationFromTable({
2448
          CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), -- Torso,
2449
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(-0.2, 0, 0), ----- Head
2450
         CFrame.new(1.78,0.1,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0,0,0.4),  --- RightArm
2451
         CFrame.new(-1.78,0.1,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, -0.4),--LeftArm
2452
         CFrame.new(0.7,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0.2), --RightLeg
2453
         CFrame.new(-0.7,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, -0.2), --LeftLeg
2454
        }, .3, false)
2455
        SRA3.C0 = clerp(SRA3.C0,CFrame.new(1.5,0,0)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),0.3)
2456
        SLA3.C0 = clerp(SLA3.C0,CFrame.new(-1.5,0,0)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),0.3)
2457
        SRL3.C0 = clerp(SRL3.C0,CFrame.new(0.5,-2,0)*CFrame.Angles(0,0,0),0.3)
2458
        SLL3.C0 = clerp(SLL3.C0,CFrame.new(-0.5,-2,0)*CFrame.Angles(0,0,0),0.3)
2459
        ST3.C0 = clerp(ST3.C0,CFrame.new(0,5,3)*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),0.3)
2460
        SH2.C0 = clerp(SH2.C0,CFrame.new(0,1.5,0)*CFrame.Angles(0,0,0),0.3)
2461
                    end
2462
        elseif Torsovelocity < 1 and hit ~= nil then
2463
            Anim = "Idle"
2464
            if Pause == false then
2465
                change = 1
2466
        PlayAnimationFromTable({
2467
         CFrame.new(0,0-.05*math.sin(tick()*2),0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),-- torso
2468
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0-.1*math.sin(tick()*2), 0, 0),--head
2469
         CFrame.new(0.8,0.2,-0.59) * CFrame.new(0, 0, 0) * CFrame.Angles(0,3,2),--right arm
2470
         CFrame.new(-1.29,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0.7, 0.4),--left arm
2471
         CFrame.new(0.6,-2,0) * CFrame.new(0, 0+.05*math.sin(tick()*2), 0) * CFrame.Angles(0, 0, 0.1),--right leg
2472
         CFrame.new(-0.9,-2,0) * CFrame.new(0, 0+.05*math.sin(tick()*2), 0) * CFrame.Angles(0, 1, -0.311),--left leg
2473
        }, .3, false)
2474
        SRA3.C0 = clerp(SRA3.C0,CFrame.new(1.5,0,0)*CFrame.new(0,0,0)*CFrame.Angles(0,0,-0),0.3)
2475
        SLA3.C0 = clerp(SLA3.C0,CFrame.new(-0.8,-0.2,0.6)*CFrame.new(0,0,0)*CFrame.Angles(-5.8,-0,-0),0.3)
2476
        SRL3.C0 = clerp(SRL3.C0,CFrame.new(0.5,-2,0)*CFrame.Angles(-0.5,-1.5,0),0.3)
2477
        SLL3.C0 = clerp(SLL3.C0,CFrame.new(-0.5,-2,0.6)*CFrame.Angles(-0.3,0,0),0.3)
2478
        SH2.C0 = clerp(SH2.C0,CFrame.new(0,1.5,0)*CFrame.Angles(0,1.5,0),0.3)
2479
        ST3.C0 = clerp(ST3.C0,CFrame.new(-1.4,0.5,-1)*CFrame.new(0,0-.1*math.sin(tick()*3),0)*CFrame.Angles(0,-2,0),0.3)
2480
            end
2481
        elseif Torsovelocity > 2 and hit ~= nil then
2482
            Anim = "Walk"
2483
            if Pause == false then
2484
        PlayAnimationFromTable({       
2485
        CFrame.new(0,0,0) * CFrame.new(0, 0-.1*math.sin(tick()*11), 0) * CFrame.Angles(-0.1-.1*math.sin(tick()*11), 0, 0+RootPart.RotVelocity.Y/33),
2486
         CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0+RootPart.RotVelocity.Y/20, 0),
2487
         CFrame.new(1.5,0,0) * CFrame.new(0, 0, 0- 0.5 * math.cos((sine) / 5)) * CFrame.Angles(math.rad(0+ 20 * math.cos((sine) / 5)),  0, 0),
2488
         CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0+ 0.5 * math.cos((sine) / 5)) * CFrame.Angles(math.rad(0- 20 * math.cos((sine) / 5)),  0, 0),
2489
         CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0+ .9 * math.cos((sine) / 5)) * CFrame.Angles(math.rad(0 - 30 * math.cos((sine) / 5)), 0, 0-RootPart.RotVelocity.Y/33),
2490
         CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0- .9 * math.cos((sine) / 5)) * CFrame.Angles(math.rad(0 + 30 * math.cos((sine) / 5)), 0, 0-RootPart.RotVelocity.Y/33),  
2491
        }, .3, false)
2492
        SRA3.C0 = clerp(SRA3.C0,CFrame.new(1.7,0,0)*CFrame.new(0,0,0)*CFrame.Angles(-0.3,0,0.5),0.3)
2493
        SLA3.C0 = clerp(SLA3.C0,CFrame.new(-1.7,0,0)*CFrame.new(0,0,0)*CFrame.Angles(-0.3,0,-0.5),0.3)
2494
        SRL3.C0 = clerp(SRL3.C0,CFrame.new(0.5,-2,0)*CFrame.Angles(-0.5,0,0),0.3)
2495
        SLL3.C0 = clerp(SLL3.C0,CFrame.new(-0.5,-2,0)*CFrame.Angles(-0.3,0,0),0.3)
2496
        SH2.C0 = clerp(SH2.C0,CFrame.new(0,1.5,0)*CFrame.Angles(0.4,0,0),0.3)
2497
        ST3.C0 = clerp(ST3.C0,CFrame.new(-1,1.5,2)*CFrame.new(0,0-.1*math.sin(tick()*6),0)*CFrame.Angles(-0.4,0,0),0.3)
2498
            end
2499
        end
2500
end