#Plz can i get help learning how to make my animation play in game :_) i rly need help

1 messages · Page 1 of 1 (latest)

spice glade
#

🙂

warm coyote
#

@spice glade im new but i can try to help

#

What animation want to play and when

#

Give me an example

spice glade
#

i want to play the axo one i made

#

idk im not very helpful i dont know hpw to describe

warm coyote
#

When u want to play it, example with my own animation: when u press f Your hand raises

warm coyote
# spice glade

U need to copy the ID and put it in the script u made (if u have one) to make it play when is suposed to do
Or that "Animation" The one below rootpart, u can put it inside the script and call it

spice glade
#

its not a goood one cause it doesnt work :/

daring hareBOT
#

studio** You are now Level 1! **studio

warm coyote
spice glade
#

script

warm coyote
spice glade
#

xd fr

warm coyote
#

U need to try and try scripts with chatgpt and u gonna get it

#

That's what I say, the legend with chagpt

#

Want me to join to the studio and watch it

spice glade
#

yes plz

warm coyote
#

But i gonna lose my mind if u dont say WHAT IS THE ANIM FOR

warm coyote
spice glade
#

its a school project

#

ANormalCoconut362

warm coyote
#

Im alone withouth teachers in this shi

spice glade
#

nah im jus doing this cause i thought it would be easier

#

also dont wanna do a irl vid

warm coyote
#

Sent

spice glade
#

Basicly everything is done for it jus need voiceover and play animation

warm coyote
#

But im asking whats the anim for to know how to settle it

#

Like

spice glade
#

its a part animation

warm coyote
#

Made it work

warm coyote
#

Im cooked

spice glade
#

XDDD

warm coyote
#

I've never done this but i gonna try

spice glade
#

ts is what i realized to late into this

warm coyote
#

Always learning

spice glade
#

^

warm coyote
spice glade
#

too late XDDD

warm coyote
#

Add me to the studio

spice glade
#

wats ur user?

warm coyote
#

See it in friend request

#

Mile

spice glade
#

ok bruh XD

#

i have 60 friend requst 💀

daring hareBOT
#

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

spice glade
#

got it

warm coyote
#

Tell me whats the part and the animations, so i move them to other game and try it

warm coyote
#

Gdamn

spice glade
#

XD wait till u see mine

warm coyote
#

How u think i send u friend request?

#

Dumb ahhh

spice glade
#

sent

warm coyote
#

K

#

In workspace make a folder named 1234

#

And put the things inside it

#

So i move them

#

I dont want to ruin this game

spice glade
#

k

warm coyote
#

done

spice glade
#

this is the part i wanna link animation too andi t alr has cam follow linked to it

warm coyote
#

?

#

triggers...

#

my enemies

spice glade
#

XD

#

boss bar appears*

warm coyote
#

where is the trigger

#

like i think i put the anim

spice glade
#

its in workspace not in folder

#

cameras did not work with the trigger in folder

warm coyote
#

well the camera is moving

#

not the axolotl

#

can u send me that tutorial

spice glade
#

which?

warm coyote
#

of this axolotl

spice glade
#

the part one?

warm coyote
#

oh shit

#

dumb youtuber

spice glade
#

?

warm coyote
#

this in much parts?

#

send me the videos then

spice glade
#

i designed axo in onshape and ill send the one for part anim

warm coyote
#

in the video says u need to put the animation id in somewhere

spice glade
warm coyote
spice glade
#

it said in the animations thingy

warm coyote
#

send me the id

#

ill try

spice glade
#

all vidieos said in this thingy but okay

warm coyote
#

86523357023215 this?

spice glade
#

rbxassetid://86523357023215

#

yea

#

tysm btw

warm coyote
#

tsym when i do this shi

spice glade
#

XD

warm coyote
#

i alr put it

#

but aint playing

#

this weird

#

explodes

spice glade
#

XD

warm coyote
#

can u explain me How is it on

#

cuz u need the trigger script to sync with the animation right?

spice glade
#

yes

daring hareBOT
#

studio** You are now Level 3! **studio

spice glade
#

wdym

#

how is it on?

warm coyote
#

how u put it on workspace

#

what is for what

spice glade
#

trigger works with forced cam movement and supposed to work in combo with animation

#

that other script is from plugin

warm coyote
#

this is cooked son

spice glade
#

:/

warm coyote
spice glade
#

?

warm coyote
#

axo have a humanoid?

spice glade
#

no it does not

#

should it?

warm coyote
#

forget it u have a animationcontroller

spice glade
#

im so confused and sorry

warm coyote
#

np

#

well well well

#

the animation is working

#

but not the camera

#

hehe

#

let me cook

#

atleast it starts when i touch the trigger

#

--Created by CraftMarkus

--This is a Touch Trigger
wait(1)

function PlayCutscene(player)
    local localplayer = script.LocalCutscenePlayer:Clone()
    local cutsceneinfo = script.CutsceneInfo:Clone()
    cutsceneinfo.Parent = localplayer
    localplayer.Parent = player.PlayerGui
    localplayer.Disabled = false
end

local debouncelist = Instance.new("Folder")
debouncelist.Name = "PlayerDebounces"
debouncelist.Parent = script

local debounce = 0
--Calculate debounce
for i,v in pairs(script.CutsceneInfo:GetChildren()) do
    if i ~= #script.CutsceneInfo:GetChildren() then
        debounce += v.Time.Value
    end
end

script.Parent.Touched:Connect(function(hit)
    if hit.Parent:FindFirstChild("Humanoid") then
        local plr = game.Players:FindFirstChild(hit.Parent.Name)
        if plr then
            if not debouncelist:FindFirstChild(plr.Name) then
                local val = Instance.new("ObjectValue")
                val.Name = plr.Name
                val.Value = plr
                val.Parent = debouncelist
                if script.CooldownAfterCutscene.Value >= 0 then
                    game.Debris:AddItem(val,debounce+script.CooldownAfterCutscene.Value)
                end
                PlayCutscene(plr)
            end
        end
    end
end)```
#

forget this

#

is working buddy

spice glade
#

?

warm coyote
#

is working

#

step the trigger

spice glade
#

the animation/

warm coyote
#

when the animation camera finished the lil buddy still going far

spice glade
#

its not working for me but atleast it works for one person XD

warm coyote
#

m

#

ohhh

#

let me cook

#

one sec

spice glade
#

all good ur the best tysm :DDD

warm coyote
#

try it

#

is working?

spice glade
#

yes :DDDDD

#

:))))))))))))

#

p

#

TYSM

#

HOLY

#

TS PMO FR

warm coyote
#

but wait buddy

#

cuz not for me

#

let me check the script

spice glade
#

?

warm coyote
#

for me is not working

#

u want ppl to see it

#

or u gonna stream it

warm coyote
spice glade
#

ima record and edit it

warm coyote
#

oh

#

i see

#

so is all good?

spice glade
#

yes TYsm

warm coyote
#

np

spice glade
#

HOLY IM SO HAPPY THAT THAT IS OVER WITH

warm coyote
#

the code was the problem. it is always.

spice glade
#

how did u get it to work?

warm coyote
#

i put the id in the animation thing

daring hareBOT
#

studio** You are now Level 9! **studio

warm coyote
#

i moved the animation to

#

animation controller

#

and changed the script

#

cuz the script needs it to be there

spice glade
#

gotcha

#

ima have to save this cause i aint wanting to go through that again next time i creat a part animation

warm coyote
#

ngl idk if Animation script in axo is working, cuz i changed the code

#

but dont delete that

#

if u want make smoother the animation

#

u only need to change the id in the animation and in the script

spice glade
#

hows that make it smother if its same id?

warm coyote
#

and try to use chatgpt, ngl is bad but he can explain u, not like that tutorial

#

You have to order things, and is cooked, easy work

warm coyote
#

if u gonna improve the animation u made or something

#

u need to save it, right? so it gives u new ID

#

so to make that work u need to change the id in animation and in the script

#

and is cooked

#

if u dont gonna improve the animation, dont do nothing then xd

spice glade
#

how would i make it smother if it alr looks clean in preview and choppy in game

warm coyote
#

but imma stole that shit video tutorial cuz i need to animate some parts with tweens cuz idk how to, i need references to learn

spice glade
#

not doin that for me which is weird

warm coyote
#

weird

#

As we do not know, let's say that the code does magic

spice glade
#

xd

daring hareBOT
#

studio** You are now Level 4! **studio

spice glade
warm coyote
#

in spanish

#

idk what is chop

#

en español que no entiendo

spice glade
#

uhh

#

so

#

ok

#

english is hard ngl i dont blame you and im learning spanish rn only making me realize how hard it is. X

warm coyote
#

no, its not hard, i didnt even study it

#

but i dont know some weird words

spice glade
#

gotcha

#

uhhh

warm coyote
#

is like saying merequetenge in spanish

#

is not a word is a saying

spice glade
#

fair

warm coyote
#

so

#

choppysh is like stuttering?

spice glade
#

kinda

#

like stuttering but not vocal

#

more like physical

warm coyote
#

Something interferes

#

or is cuz it is going far

#

something is bad welded

#

idk

spice glade
#

:/

#

okay

warm coyote
#

the animation starts stutterings after he decapitates

spice glade
#

u helped me beyond enough anyway

#

its good

warm coyote
#

i can try, for me its not a problem

#

if it is in my habilities

#

and it is never in, is my magic

spice glade
#

XD sure man if thats okay

spice glade
warm coyote
#

for me, english is dumb, for japan spanish is dumb maybe

#

cuz english is like the red house, in spanish is la casa roja, if u translate LITERALLY is the house red

#

in japan is like house the red

#

idk luck learning the best language

spice glade
#

theres literley yt videos on how many errors there is with it

warm coyote
#

ye

#

spanish idk if it has errors but always working

spice glade
#

spanish seems like it makes more sense

warm coyote
#

is more talkative if i can say like that

#

expresive

#

can i delet the geim?

spice glade
#

?

#

yea i got a save

warm coyote
#

XD

#

no, chill

spice glade
#

?

warm coyote
#

was a joke

spice glade
#

oh ok XD

warm coyote
#

between 4 and 5 is the bug

spice glade
#

the only problem with spanish i got is past tense rn

#

oh hhh

#

that makes sense

warm coyote
spice glade
#

i deleted on my end

#

XD

warm coyote
#

select the axo and u gonna see how it cracks

#

i was a dumb yesterday
yo fui un tonto ayer
past is similar i think

#

there is super similar

#

i eated chicken
yo comi pollo

spice glade
#

honestly its just pretiterite irregulars and destinguishing preterite from imperfect

warm coyote
#

never talk to a spanish ppl about his idiom cuz they talk it, they dont know that shi

spice glade
#

Im going take spanish all 4 years and year 3 i get bilangual and i think that is dumb

warm coyote
#

nothing nothing

spice glade
#

is it automatic

warm coyote
#

i dont practiced it

#

bros mind is smart when he born

warm wraith
#

did u get it to work yet

warm coyote
spice glade
#

ye

warm wraith
warm coyote
warm wraith
spice glade
#

thank you so much again

warm wraith
#

lol

spice glade
#

xd

warm coyote
spice glade
#

for sure XD

warm wraith
warm coyote
#

right click in the publication and put solved

#

edit etiquetes

mystic lintel
#

Seeing this I belive in humanity 😭