The forum above by Biguniverses, it’s about using a module script to load the files with the characters, animations, and camera value from moon animator and playing it in the game yet I don’t know well enough of coding to make it work. Down below is the code:
-- local CutsceneHandler = {}
local RunService = game:GetService("RunService")
local Character = game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:Wait()
local Camera = workspace.Camera
function CutsceneHandler.NewCutscene(AnimationFolder)
local Animations = AnimationFolder:WaitForChild("Animations"):GetChildren()
local Characters = AnimationFolder:WaitForChild("Characters"):GetChildren()
local CameraFolder = AnimationFolder:WaitForChild("CameraFolder")
if not AnimationFolder or not Characters or not CameraFolder then
warn("Could not find folder")
return
end
local LoadedAnimations = {}
for _, Char in ipairs(Characters) do
local Humanoid = Char:FindFirstChild("Humanoid")
for _, Anim in ipairs(Animations) do
if Anim.Name == Char.Name then
table.insert(LoadedAnimations, Humanoid:LoadAnimation(Anim))
end
end
end
return LoadedAnimations, CameraFolder
end
function Cinematic(CameraFolder)
local CinematicsFolder = CameraFolder
local CurrentCameraCFrame = workspace.CurrentCamera.CFrame
local FrameTime = 0
local Connection
Character.Humanoid.AutoRotate = false
Camera.CameraType = Enum.CameraType.Scriptable
Connection = RunService.RenderStepped:Connect(function(DT)
FrameTime += (DT * 60)
local NeededFrame = CinematicsFolder.Frames:FindFirstChild(tonumber(math.ceil(FrameTime)))
if NeededFrame then
Camera.CFrame = NeededFrame.Value
else
Connection:Disconnect()
Character.Humanoid.AutoRotate = true
Camera.CameraType = Enum.CameraType.Custom
Camera.CFrame = CurrentCameraCFrame
end
end)
end
function CutsceneHandler.StartCutscene(LoadedAnimations, CameraFolder, LengthOfCutscene)
for _, v in ipairs(LoadedAnimations) do
v.Looped = false
v:Play()
end
Cinematic(CameraFolder)
if not LengthOfCutscene then return warn("No Length Specified") end
task.wait(LengthOfCutscene)
print("Cutscene Complete")
end
return CutsceneHandler
So far below, I have organized my files like this for the scripting of the moon animator cutscene and the module with a RemoteEvent to fire the cutscene at the start. The script in the serverscriptservice written down below, I believe should recall the module function and fire the remote event at the start, but I am pretty new to module scripts and RemoteEvent so I don’t really know how to use them well. I was wondering if I am so far on track since I am pretty new to this.
-- local ReplicatedStorage = game:GetService("ReplicatedStorage")
local CutsceneHandlerModule = require(ReplicatedStorage:WaitForChild("CutsceneHandlerModule"))
local StartCutsceneEvent = Instance.new("RemoteEvent")
StartCutsceneEvent.Name = "StartCutsceneEvent"
StartCutsceneEvent.Parent = ReplicatedStorage
StartCutsceneEvent.OnServerEvent:Connect(function(player)
-- Here, you can call your cutscene-related functions from the module script.
-- For example:
local CutsceneFolder = game.Workspace:WaitForChild("Cutscene")
local LoadedAnimations, CameraFolder = CutsceneHandlerModule.NewCutscene(CutsceneFolder)
CutsceneHandlerModule.StartCutscene(LoadedAnimations, CameraFolder, 10)
end)
Hey there! This is actually a pretty old script by me, and immediately its not my best work,
this module is also Clientsided, meaning you can only run it on a local script.
I do have a updated version, although it still isn’t the best its a bit better! (I wrote these all a while ago)
--Services
local RunService = game:GetService("RunService")
--Variables
local Character = game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:Wait()
local Camera = workspace.CurrentCamera
local CutsceneHandler = {}
local CutsceneHandler_mt = {__index = CutsceneHandler};
function CutsceneHandler.NewCutscene(AnimationFolder, LengthOfCutScene)
local self = {};
self.Animations = AnimationFolder:WaitForChild("Animations")
self.Characters = AnimationFolder:WaitForChild("Characters")
self.CameraFolder = AnimationFolder:WaitForChild("CameraFolder")
self.Length = LengthOfCutScene
self.LoadedAnimations = {}
for _, Char in ipairs(self.Characters:GetChildren()) do
local Humanoid = Char:FindFirstChild("Humanoid") or Char:FindFirstChild("AnimationController")
for _, Anim in ipairs(self.Animations:GetChildren()) do
if Anim.Name == Char.Name then
table.insert(self.LoadedAnimations, Humanoid:LoadAnimation(Anim))
end
end
end
task.wait(3) --Time to load animations
return setmetatable(self, CutsceneHandler_mt);
end
local function RenderCamera(CameraFolder)
local CinematicsFolder = CameraFolder
local CurrentCameraCFrame = Camera.CFrame
local FrameTime = 0
local Connection
Character.Humanoid.AutoRotate = false
Camera.CameraType = Enum.CameraType.Scriptable
Connection = RunService.RenderStepped:Connect(function(DT)
FrameTime += (DT * 60)
-- This will convert the seconds passed (DT) to the frame of the camera we need.
-- Then it adds it to the total amount of time passed since the animation started
local NeededFrame = CinematicsFolder.Frames:FindFirstChild(tonumber(math.ceil(FrameTime)))
if NeededFrame then
Camera.CFrame = NeededFrame.Value
else
Connection:Disconnect()
Character.Humanoid.AutoRotate = true
Camera.CameraType = Enum.CameraType.Custom
Camera.CFrame = CurrentCameraCFrame
end
end)
end
function CutsceneHandler:StartCutscene()
for _, v in ipairs(self.LoadedAnimations) do
v.Looped = false
v:Play()
end
RenderCamera(self.CameraFolder)
if not self.Length then return warn("No Length Specified") end
task.wait(self.Length)
print("Cutscene Complete")
end
return CutsceneHandler
And here is a use example within a localscript
local CutsceneHandlerModule = require(ReplicatedStorage:WaitForChild("CutsceneHandlerModule"))
local Cutscene = CutsceneHandlerModule.NewCutscene(AnimationFolder, LengthOfCutScene -- Optional)
Cutscene:StartCutscene()
Thank you so much for your help, I figured out how to do it thanks to you! I am now able to play animations and the camera together from the moon animator.