How do break a camera interpolation loop when a button is pressed???
Asked by
5 years ago Edited 5 years ago
I would like to make such a Camera Script (please click here and play to see the Main Menu), but all my attempts to copy it have failed. Do you have a solution please? --Edited New: I finally managed to imitate the loop, but that with the PlayButton that the loop should break once clicked still does not work. Here is the script:
03 | local RE = game.ReplicatedStorage.RE |
05 | game.Players.PlayerAdded:Connect( function (player) |
11 | game.ReplicatedStorage.RE.OnClientEvent:Connect( function () |
12 | local camera = workspace.CurrentCamera |
13 | local Player = game.Players.LocalPlayer |
14 | camera.CameraType = "Scriptable" |
16 | camera:Interpolate(workspace.Part 1. CFrame, workspace.Part 2. CFrame, 2 ) |
18 | camera:Interpolate(workspace.Part 2. CFrame, workspace.Part 3. CFrame, 2 ) |
20 | camera:Interpolate(workspace.Part 3. CFrame, workspace.Part 4. CFrame, 2 ) |
22 | camera:Interpolate(workspace.Part 4. CFrame, workspace.Part 5. CFrame, 2 ) |
24 | camera:Interpolate(workspace.Part 5. CFrame, workspace.Part 6. CFrame, 2 ) |
29 | script.Parent.MouseButton 1 Click:Connect( function () |
30 | local Player = game.Players.LocalPlayer |
31 | game.ReplicatedStorage.RemoteEvent:FireServer(Player) |
35 | game.ReplicatedStorage.RemoteEvent.OnServerEvent:Connect( function (Player) |
37 | game.Workspace.CurrentCamera.CameraType = "Custom" |
39 | game.Workspace.CurrentCamera.CameraType = = "Custom" |
Did you find the mistake ???