#Almost nothing is working. This fist is for r6, Ive added animations that are made by my friend

1 messages · Page 1 of 1 (latest)

serene narwhal
#

The animations, Damage, Hitbox, doesnt work or anything. I can show the scripts ive done but i cant for some reason to seem to find a proper fix for this or a answer.

#

local Tool = script.Parent
local Player = game.Players.LocalPlayer
local Char = game.Workspace:WaitForChild(Player.Name)
local Humanoid = Char:WaitForChild("Humanoid")
local Check = 0
local Enable = true
local idle = script.Idle

Tool.Equipped:Connect(function()
local idleey = Humanoid:LoadAnimation(idle)
idleey:Play()
Tool.Unequipped:Connect(function()
idleey:Stop()
end)
end)

Tool.Activated:Connect(function()
local humanoid = script.Parent.Parent:WaitForChild("Humanoid")
if Enable == true then
Enable = false
if Check == 0 then
humanoid:LoadAnimation(script.Anim01):Play()
script.Parent.Combo.C0:FireServer(Char:FindFirstChild("Left Arm"))
script.Swing:Play()
wait(0.4)
Check = 1
Enable = true
else if Check == 1 then
humanoid:LoadAnimation(script.Anim02):Play()
script.Parent.Combo.C1:FireServer(Char:FindFirstChild("Right Arm"))
script.Swing:Play()
wait(0.4)
Check = 0
Enable = true
end
end
end
end)

while wait(10) do
if Check == 1 then
Check = 0
end
end

rustic aspen
#

I recommend redoing everything