You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? Keep it simple and clear!
I want the HumanoidRootpart to unanchor after the animation has finished playing. -
What is the issue? Include screenshots / videos if possible!
The HumanoidRootpart will still stay anchored. -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I have searched around on developer hub and here.
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
local Character = Player.Character
local Humanoid = Character:WaitForChild("Humanoid")
local HRP = Character:WaitForChild("HumanoidRootPart")
local Animator = Humanoid:FindFirstChildOfClass("Animator")
local iceSpikeAnimation = Animator:LoadAnimation(script.IceSpikeAnimation)
iceSpikeAnimation.Stopped:wait()
HRP.Anchored = false
These are the parts that i think is the most important.
Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.