- What do you wanna achieve?
Im basically trying to animate the ball in the image below while it’s attached to the player with a WeldConstraint
!
- What solutions have you tried so far?
Every attempt is worse than the other:
-
Making the ball a Humanoid and adding HumanoidRootPart (Failed)
-
Attaching the ball to another part that is attached to the player (Failed because HumaRootPart is anchored)
and more…
so I came here to the Devforum to hopefully find a solution for this situation
local ball = game.Workspace.GAMEBALL.Humanoid
game.ReplicatedStorage.Touchpart.OnServerEvent:Connect(function(player)
local anim = ball:LoadAnimation(game.Lightning.ANIM1)
anim:Play()
end)