This is the script and i want to have the 1 as a text and i want it has HieHie.
if me.Data.DevilFruit.Value == 1 then if script.Parent:findFirstChild("HieHie") == nil then game.Lighting.Afruit:findFirstChild("HieHie"):clone().Parent = script.Parent game.Lighting.Animate:findFirstChild("AnimateHie"):clone().Parent = me.Character me.Character:findFirstChild("AnimateHie").Disabled = false end end
Thanks for reading :3
For starters, please insert your code into a code block.
if me.Data.DevilFruit.Value == 1 then if script.Parent:findFirstChild("HieHie") == nil then game.Lighting.Afruit:findFirstChild("HieHie"):clone().Parent = script.Parent game.Lighting.Animate:findFirstChild("AnimateHie"):clone().Parent = me.Character me.Character:findFirstChild("AnimateHie").Disabled = false end end
I'm guessing you'd like to animate the player. For that you may want to do something like:
if me.Data.DevilFruit.Value then if not script.Parent:findFirstChild("HieHie") then Anim=Instance.new("Animation") Anim.AnimationId="(insert export id here)" LoadedAnim=(Path to Humanoid):LoadAnimation(Anim) LoadedAnim:Play() end end
If this does not work, check your output for errors.
If it does, hit that accept button!
~Chem
This is the script and i want to have the 1 as a text and i want it has HieHie.
if me.Data.DevilFruit.Value == 1 then if script.Parent:findFirstChild("HieHie") == nil then game.Lighting.Afruit:findFirstChild("HieHie"):clone().Parent = script.Parent game.Lighting.Animate:findFirstChild("AnimateHie"):clone().Parent = me.Character me.Character:findFirstChild("AnimateHie").Disabled = false end end
Thanks for reading :3~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~