You can write your topic however you want, but you need to answer these questions:
Im trying to get this cutscene to be in loopable so it can go on for ever! I am using CloneTrooper1019 cutscene plugin.
the issues are im new to scripting and i dont want to have my player to spawn so the script can go on for ages!
tried ask someone on twitter didnt help me out trying this way…
Also when i go in the lcient everything is of centered but when i has top bar the bottom bar and side bars its centered … ? i need help with that also please!
If I’m not mistaken CloneTrooper’s plugin is deprecated, so I suggest you use other methods such as workspace.CurrentCamera:Interpolate or TweenService.
Let’s take an example.
There are two parts in the workspace, part1 and part2. We want the camera to face part2 from part1’s position. This should be easily accomplished with the Interpolate function.
local cam = workspace.CurrentCamera
local movingduration = 3 -- how long we want it to take moving
local part1 = workspace.part1
local part2 = workspace.part2
cam:Interpolate(part1.CFrame, part2.CFrame, movingduration)
Agree, since the plugin is deprecated, you should utilize other methods to perform such behavior. Apart from cam:Interpolate, it’s recommended to use TweenService since it’s more customizeable. Such as EasingStyles, Speed etc.