#R6

1 messages · Page 1 of 1 (latest)

analog elbow
#

I have been trying to make animations and when I set them it just gets rid of the animation I think it's because im making r6 animations but the game is r15 how do I change my game to r6

worthy bone
#

Go to avatar

#

Then avatar settings

#

Left click 3 dots

#

R6 only

analog elbow
# worthy bone Go to avatar

One more question I made a idle animation and I was wondering how do I make it's repeat it's just doing it once and stoping

jagged badgeBOT
#

studio** You are now Level 2! **studio

jagged badgeBOT
#

studio** You are now Level 8! **studio

analog elbow
#

Ok

#

Oh

#

Nvm I figured it out

#

Nvm I lost again

worthy bone
analog elbow
worthy bone
#

Okay...

#

Send the script pls

analog elbow
#

Uhh I kinda haven't wrote none yet

#

I animationed it straight from roblox studio

worthy bone
#

bro

#

💀

#

how is ur anim supposed to loop

analog elbow
#

Chat that's what in asking fr

worthy bone
#

i'll make a script really quick

analog elbow
#

Ok I'ma try to write one

#

Oh ok

worthy bone
#

local giocatore = game.Players.LocalPlayer
local personaggio = giocatore.Character or giocatore.CharacterAdded:Wait()
local humanoidRootPart = personaggio:WaitForChild("HumanoidRootPart")
local umanoide = personaggio:WaitForChild("Humanoid")

local idleAnimation = Instance.new("Animation")
idleAnimation.AnimationId = "rbxassetid://128542024454911" -- replace w ur animation id

local traccia = umanoide:LoadAnimation(idleAnimation)
traccia.Looped = true

local animazioneAttiva = false

game:GetService("RunService").Heartbeat:Connect(function()
if not personaggio or not humanoidRootPart then return end

local velocita = humanoidRootPart.Velocity.Magnitude

if velocita < 0.1 then
    if not animazioneAttiva then
        traccia:Play()
        animazioneAttiva = true
    end
else
    if animazioneAttiva then
        traccia:Stop()
        animazioneAttiva = false
    end
end

end)

#

put this inside a local script inside starterplayerscript

analog elbow
#

Oh ok

worthy bone
#

also i think you need to server side it

analog elbow
#

So is there anything I would need to change or just put it in

worthy bone
#

i added a comment where you need to change the animation id

analog elbow
#

Ok thanks alot