i am pretty new to making player firstperson in script…anyways here’s the script
--variables
local PlayButton = script.Parent.PlayButton
local UpdateLogButton = script.parent.UpdateLogButton
local MainFrame = script.Parent
local ChangeLogFrame = script.Parent.Parent.ChangeLog
local ChangeLogButton = script.Parent.UpdateLogButton
PlayButton.MouseButton1Click:Connect(function()
MainFrame.Visible = false
wait(0.5)
-- I guess firstpersonlock goes here
end)
UpdateLogButton.MouseButton1Click:Connect(function()
ChangeLogFrame.Visible = true
end)