#pls help with animation script bug
51 messages · Page 1 of 1 (latest)
Simple fix
It looks like the animations are meshing together
so just tune the animation priority
bruh I read this rn tysm u're so helpful
bro I put Idle in idle, walk in movement, running without sword in action and with sword action2, but idle and walk animation still in trouble like with delay to change
I changed all priorities but still like this ( sorry for the quality I recorded in roblox bruh cus I'm lazy )
if u can help I'll be grateful, but now i'm gonna sleep
you sure that ain't lag?
its possible to lag in roblox studio
wdym with lag
do you have a script controlling the anims?
yeah I have
hey u know how to make a script that u cant unequip the tool, like spawn with it in your hand and cant get off
well you can just disable the backpack core ui
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
yeah I did this but didnt work
hmmmm
huh? english pls
just parent the tool to your character when they join the game
and when they die
oh ok
or use humanoid:equip(tool)
both are valid options
can i see the script that plays the animation
cuz it looks like you tuned priority (not animation priority) with weird wait functions
this is the equip script and still not working
`game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
local tool = Instance.new("Tool")
tool.Name = "Espada"
tool.Parent = player.Backpack
tool.Equipped:Connect(function()
print("tool equipped")
end)
wait(1)
if player and player.Parent and player.Character and player.Character.Parent and player.Backpack then
local toolInBackpack = player.Backpack:FindFirstChild("Espada")
if toolInBackpack then
toolInBackpack:Equip()
end
end
end)
end)`
here is the anim script
I made a change to the script, so that just by walking the player runs, because I didn't want his function to just walk slowly
this isn't the entire script is it?
well i wonder why.
It should set the backpack as disabled from a localscript and equip it by server
let me cook smth up rq
I wrote these with windows .txt because my studio is broken rn so fix any capitalization errors
It'll run everytime you respawn too because that's localscript's settings by default
oh tysmm
ok
you don't need a folder I just put it there because organization is yay
but did the laggy animations fix?