You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
I want my player to load animation
What is the issue? Include screenshots / videos if possible!
It can’t find player, even though logically it should
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
Yes I did
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
-- local service = game:GetService("ProximityPromptService")
local Balcony_Model = workspace.Balcony_Model
local Window = Balcony_Model.Open_window
local prox = Window.ProximityPrompt
local Window = workspace.Window_frame
prox.Triggered:Connect(function(playerWho)
print(playerWho)
local pos = CFrame.new(64.075, 5.315, -113.55)
Window:PivotTo(pos * CFrame.Angles(math.rad(0),math.rad(0),math.rad(32.102)))
print(playerWho)
end)