Hello! I’ve recently made a chromatic effect on Roblox. It works as intended but, I cant get the chromatic models (fake model) to move with the real model. So how do I do achieve that (I am not talking about the player only. i am also talking about other models that are in workspace)
for _, group in pairs(workspace:GetChildren()) do
if group:IsA("Model") then
local realModel = group
realModel.Archivable = true
local redModel = realModel:Clone()
redModel.Parent = redViewport.World
local greenModel = realModel:Clone()
greenModel.Parent = greenViewport.World
local blueModel = realModel:Clone()
blueModel.Parent = blueViewport.World
end
end