-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAxe.module.lua
More file actions
48 lines (47 loc) · 954 Bytes
/
Axe.module.lua
File metadata and controls
48 lines (47 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
-- Ximmy's Sexy Script Decompiler
-- Original: ReplicatedStorage.Config.WeaponConfig.Axe
-- https://lua.expert/
local ReplicatedStorage = game:GetService("ReplicatedStorage")
require(ReplicatedStorage.Constant)
local Anim = ReplicatedStorage.Assets.Anim
local t = {
Display = "Hatchet",
SoundGroup = { script.Name, "Melee" },
MeleeSeq = {
[-1] = {
Duration = 0.95,
Damage = 100,
Segments = {
{
HitSize = Vector3.new(2, 4, 4.5),
Start = 0.23,
Stop = 0.33
}
}
},
{
Duration = 0.42,
Segments = {
{
HitSize = Vector3.new(3, 3, 4.5),
Start = 0.1,
Stop = 0.2
}
}
},
{
Duration = 0.42,
Segments = {
{
HitSize = Vector3.new(3, 3, 4.5),
Start = 0.1,
Stop = 0.2
}
}
}
},
FakeArmAnims = Anim.FakeArm.Human.Axe.Default,
CharacterAnims = Anim.Character.Human.Axe.Default
}
require(ReplicatedStorage.Config.WeaponConfig.BaseMelee):extends(t)
return t