Untitled

mail@pastecode.io avatarunknown
plain_text
a month ago
276 B
2
Indexable
Never
local model = script.Parent

local animations = model.Animations
local humanoid = model.Humanoid

humanoid.Animator:LoadAnimation(animations.PON):Play()

local greeting = humanoid.Animator:LoadAnimation(animations.PON2)

while true do
	wait(7)
	greeting:Play()
end