Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Does this script work with filtering enabled?

Asked by 5 years ago

The purpose of the script is to play an animation.

local hum = game.Workspace.Dannebrog.HumanoidCharacter
local set = hum.Parent.Settings
local sp = set.Speed
local enabled = set.Enabled

local humanim = hum:LoadAnimation(hum.Parent.Settings.IdleAnimation)

game.Workspace.TriggerPart.Touched:Connect(function(part)
    if part.Parent.Humanoid then
        humanim:Play()
        humanim.Looped = false
        humanim:AdjustSpeed(sp.Value)
    end
end)
2
Yes it will play, animations are client sided. Freddan2006YT 88 — 5y
0
Thanks, if you write it as an "answer", I will accept it. AndriusTheGreat 140 — 5y
0
This question is totally useless. You should learn what Sonnenroboter 336 — 5y
0
'FilteringEnabled' is and what it does. I should learn not to accidentaly press enter. Sonnenroboter 336 — 5y

Answer this question