(BTW click the images if they don’t load that might show them atliest)
-
What do you want to achieve?
The script working -
What is the issue?
The script not working video is quite useless -
What solutions have you tried so far?
giving it a handle, turning off CanBeDropped and ManualActivation aswell as RequiresHandle (in tool), copied a script that worked for someone who had the same problem, but somehow fixed it.
This is a handle-less tool wich only uses a script to do the thing
It’s a bit annoying that the scripts I make don’t work because of a simple small mistake that could be anywhere
local anim = script:WaitForChild("DanceAnim")
local player = game.Players.LocalPlayer
local tool = script.Parent -- use a direct path to the tool
local char = player.Character or player.CharacterAdded:Wait()
local hum = char:WaitForChild("Humanoid")
local animtrack = hum:LoadAnimation(anim)
tool.Activated:Connect(function()
animtrack:Play()
end)
The way i’ve placed my stuff (anim id is right btw)
Just incase someone knows the reason by using the properties
This is the tool properties:
This is the script properties:
And this is the animation properties: