Making a mirror script? Player mirroring?
Hi, I've been trying to make a mirror and this is what happens:
https://youtu.be/3ydSPUQ5lsE
I just need help with the character-portian of it
My script:
03 | game.Players.PlayerAdded:Connect( function (plr) |
05 | if not players [ plr.Name ] then |
06 | repeat wait() until workspace:FindFirstChild(plr.Name) |
07 | local char = plr.Character:Clone() |
08 | char.Parent = workspace.MirrorPlayers |
09 | players [ plr.Name ] = char |
13 | game:GetService( "RunService" ).Heartbeat:Connect( function () |
14 | for i,v in pairs (game.Players:GetPlayers()) do |
15 | if players [ v.Name ] then |
16 | local cf = workspace.M 1. CFrame:ToObjectSpace(v.Character.HumanoidRootPart.CFrame)*CFrame.Angles( 0 ,math.pi, 0 )*CFrame.new(- 1 ,- 0.9 , 0 ) |
17 | local cf 2 = workspace.M 2. CFrame*cf |
18 | players [ v.Name ] .HumanoidRootPart.CFrame = cf 2 |