Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can i turn this animation player script in to a damage dealing punch barrage ?

Asked by 4 years ago

local UIS = game:GetService("UserInputService") local plr = game.Players.LocalPlayer local Char = plr.Character or plr.CharacterAdded:Wait()

local Key = "E"

local Animation = Instance.new("Animation") Animation.AnimationId = "rbxassetid://4213048413"

UIS.InputBegan:Connect (function(Input, IsTyping) if IsTyping then return end local KeyPressed = Input.KeyCode if KeyPressed == Enum.KeyCode[Key] then local LoadAnimation = Char.Humanoid:LoadAnimation(Animation) LoadAnimation:Play() end end)

and is it possible ?

0
I haven't looked into dealing damage to players much, But I'm sure it has something to do with a players hitbox being hit, and subtracting health from the Humanoid. YourBoiKdude 2 — 4y
0
Uh next time use a format when you post scripts. VitroxVox 884 — 4y
0
is your character R15 or R6? VitroxVox 884 — 4y
0
its R6 AtomAtakan1523 0 — 4y

Answer this question