Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Making a mirror script? Player mirroring?

Asked by 5 years ago

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:

01local players = {}
02 
03game.Players.PlayerAdded:Connect(function(plr)
04    print("PLAYER ADDED")
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
10    end
11end)
12 
13game:GetService("RunService").Heartbeat:Connect(function()
14    for i,v in pairs(game.Players:GetPlayers()) do
15        if players[v.Name] then
View all 21 lines...
0
clone, get distance from mirror, add the inverse of the magnitude (basically -magnitude) to the mirror, then use a loop to properly position and set cframe according to base player Fifkee 2017 — 5y
0
Ok i fixed a lot of the problems but now the character is backwards. Any ideas? Sorry, I never scripted a mirror before :/ the8bitdude11 358 — 5y
0
and how do i replicate animations? the8bitdude11 358 — 5y

Answer this question