Fe Animation Id Player Script

To play an Animation ID on a player character in Roblox with Filtering Enabled (FE), you must load the animation through the Humanoid or Animator object. Because of how Roblox handles FE player animations, animations played via a LocalScript on the player's own character will automatically replicate to other players. Core Script (LocalScript)

Here are some tips and tricks for using the FE Animation ID Player Script: FE Animation Id Player Script

-- Play Button local playButton = Instance.new("TextButton") playButton.Size = UDim2.new(0.4, 0, 0, 35) playButton.Position = UDim2.new(0.05, 0, 0, 85) playButton.Text = "Play Animation" playButton.BackgroundColor3 = Color3.fromRGB(0, 120, 255) playButton.TextColor3 = Color3.fromRGB(255, 255, 255) playButton.Font = Enum.Font.GothamBold playButton.TextSize = 14 playButton.BorderSizePixel = 0 playButton.Parent = mainFrame

Player1 should play an animation created by them through a LocalScript. If Player2 can see it, then the movements are replicating. Developer Forum | Roblox Use animations | Documentation - Roblox Creator Hub To play an Animation ID on a player

local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 200, 0, 300) frame.Position = UDim2.new(0.5, -100, 0.5, -150) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.Parent = screenGui If Player2 can see it, then the movements are replicating