normal script inside a proximity point and the proximity is inside a door knob
script:
local prox = script.Parent
game.Players.PlayerAdded:Connect(function(plr)
local char = plr.Character or plr.CharacterAdded:Wait()
local hum = char:WaitForChild("Humanoid")
local animation = Instance.new("Animation")
animation.AnimationId = "rbxassetid://9242790306"
local track = hum:LoadAnimation(animation)
prox.Enabled = true
prox.Triggered:Connect(function()
prox.Enabled = false
track:Play()
print("Working")
end)
end)
its r6 animation and i set the place to r6 already