I understand the issue much better now, but unfortunately this is a situation where trying to fix this issue is creating a new problem
As I previously mentioned (and I learned today while trying to fix this issue), the default animation script uses a BindableFunction to handle emotes. The BindableFunction seems to be invoked from a core script, so I won’t be able to make any changes there. The script that’s invoking the BindableFunction passes either a string, or an animation, as an argument. It passes a string when you use one of the “regular” emotes, and an animation when you use one of the emotes you have equipped to your character
I tried handling emote command logic myself, which worked when playing the “regular” emotes, but kept giving me that error when I tried playing the equipped emotes, and the only solution I found to avoid that error is to use the BindableFunction, which unfortunately displays the “You do not own that emote” warning when you try to play a custom emote
Essentially, I don’t think there’s currently a way to handle “regular”, equipped, and custom emotes combined at the moment, without some kind of error or warning showing up
This version might allow you to use your custom emotes, and it also supports the “regular” emotes, but doesn’t support equipped emotes:
--!strict
local TextChatService = game:GetService("TextChatService")
local DEFAULT_FADE_TIME: number = 0.1
local character: Model = script.Parent
local humanoid = character:WaitForChild("Humanoid"):: Humanoid
local animationTracks: {[string]: AnimationTrack} = {}
do
local animator = humanoid:WaitForChild("Animator"):: Animator
local animationData: {[string]: {any}} = {
cheer = {"rbxassetid://507770677", Enum.AnimationPriority.Idle},
Climb = {"rbxassetid://507765644", Enum.AnimationPriority.Core},
dance = {"rbxassetid://507772104", Enum.AnimationPriority.Core},
dance2 = {"rbxassetid://507776879", Enum.AnimationPriority.Core},
dance3 = {"rbxassetid://507777623", Enum.AnimationPriority.Core},
Fall = {"rbxassetid://507767968", Enum.AnimationPriority.Core},
Idle = {"rbxassetid://507766388", Enum.AnimationPriority.Core},
laugh = {"rbxassetid://507770818", Enum.AnimationPriority.Idle},
Lunge = {"rbxassetid://522638767", Enum.AnimationPriority.Movement},
point = {"rbxassetid://507770453", Enum.AnimationPriority.Idle},
Run = {"rbxassetid://913376220", Enum.AnimationPriority.Core},
Sit = {"rbxassetid://2506281703", Enum.AnimationPriority.Core},
Slash = {"rbxassetid://522635514", Enum.AnimationPriority.Movement},
Swim = {"rbxassetid://913384386", Enum.AnimationPriority.Core},
SwimIdle = {"rbxassetid://913389285", Enum.AnimationPriority.Core},
Tool = {"rbxassetid://507768375", Enum.AnimationPriority.Idle},
wave = {"rbxassetid://507770239", Enum.AnimationPriority.Idle},
bk = {"rbxassetid://129393686778054", Enum.AnimationPriority.Idle}}
for name, data in animationData do
local animation = Instance.new("Animation")
animation.AnimationId = data[1]
local animationTrack = animator:LoadAnimation(animation)
animationTrack.Priority = data[2]
animationTracks[name] = animationTrack
animation:Destroy()
end
end
local animationTrack = animationTracks.Idle
animationTrack:Play(0)
local childAddedConnection: RBXScriptConnection?
local round = math.round
local function play(newAnimationTrack: AnimationTrack, fadeTime: number?)
if newAnimationTrack.IsPlaying then return end
local fadeTime = fadeTime or DEFAULT_FADE_TIME
animationTrack:Stop(fadeTime)
animationTrack = newAnimationTrack
animationTrack:Play(fadeTime)
end
local function onClimbing(speed: number)
play(animationTracks.Climb)
animationTracks.Climb:AdjustSpeed(round(speed) / 11)
end
local function onFreeFalling(active: boolean)
if active then play(animationTracks.Fall) end
end
local function onRunning(speed: number)
local speed = round(speed)
if speed > 0 then
play(animationTracks.Run)
animationTracks.Run:AdjustSpeed(speed / 16)
else
play(animationTracks.Idle)
end
end
local function onSeated(active: boolean)
if active then play(animationTracks.Sit) end
end
local function onSwimming(speed: number)
local speed = round(speed)
if speed > 2 then
play(animationTracks.Swim)
animationTracks.Swim:AdjustSpeed(speed / 12)
else
play(animationTracks.SwimIdle)
end
end
local function onChildAdded(child: Instance)
if child:IsA("Tool") and child:FindFirstChild("Handle") then
animationTracks.Tool:Play(DEFAULT_FADE_TIME)
childAddedConnection = child.ChildAdded:Connect(function(child: Instance)
if child:IsA("StringValue") and child.Name == "toolanim" then
if child.Value == "Slash" then
animationTracks.Slash:Play(0)
elseif child.Value == "Lunge" then
animationTracks.Lunge:Play(0, 1, 6)
end
child:Destroy()
end
end)
end
end
local function onChildRemoved(child: Instance)
if child:IsA("Tool") and child:FindFirstChild("Handle") then
if childAddedConnection then
childAddedConnection:Disconnect()
childAddedConnection = nil
end
animationTracks.Tool:Stop(DEFAULT_FADE_TIME)
end
end
humanoid.Climbing:Connect(onClimbing)
humanoid.FreeFalling:Connect(onFreeFalling)
humanoid.Running:Connect(onRunning)
humanoid.Seated:Connect(onSeated)
humanoid.Swimming:Connect(onSwimming)
character.ChildAdded:Connect(onChildAdded)
character.ChildRemoved:Connect(onChildRemoved)
if TextChatService.ChatVersion == Enum.ChatVersion.TextChatService
and TextChatService.CreateDefaultCommands
and TextChatService.CreateDefaultTextChannels
then
local rbxEmoteCommand = Instance.new("TextChatCommand")
rbxEmoteCommand.Name = "RBXEmoteCommand"
rbxEmoteCommand.PrimaryAlias = "/emote"
rbxEmoteCommand.SecondaryAlias = "/e"
local textChatCommands = TextChatService:WaitForChild("TextChatCommands")
textChatCommands:WaitForChild("RBXEmoteCommand"):Destroy()
rbxEmoteCommand.Parent = textChatCommands
local rbxSystem: TextChannel = TextChatService:WaitForChild("TextChannels"):WaitForChild("RBXSystem")
rbxEmoteCommand.Triggered:Connect(function(_, unfilteredText: string)
local emote = string.split(unfilteredText, " ")[2]
local animationTrack = animationTracks[emote]
if animationTrack then
if string.find(emote, "dance") then
play(animationTrack)
else
animationTrack.Looped = false
animationTrack:Play(DEFAULT_FADE_TIME)
end
else
rbxSystem:DisplaySystemMessage("<font color='#FF4040'>You do not own that emote.</font>")
end
end)
end