So i’m having a small problem and i don’t know how to solve it. So i create a Play button loading
everything work pretty good, but the problem was when i reset, the play button pop up again
MainCamera LocalScript ---- this put in started gui
local player = game.Players.LocalPlayer
local character = player.Character
local camera = workspace.CurrentCamera
repeat wait() print(“Finding camera”)
camera.CameraType = Enum.CameraType.Scriptable
until camera.CameraType == Enum.CameraType.Scriptable
camera.CFrame = workspace.CameraPos.CFrame
Play button LocalScript — this put in text button
script.Parent.MouseButton1Click:Connect(function() game.ReplicatedStorage.PlayButtonSounds:Play()
script.Parent.Parent.Enabled = false
workspace.CurrentCamera.CameraType = Enum.CameraType.Custom print(“End”)
end)
Thanks for helping me ![]()