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

Is there a way to make a player character always refreshing in real-time ?

Asked by 5 years ago
Edited 5 years ago
local plr = game.Players.LocalPlayer

while true do
    wait()
    plr:LoadCharacter()
end

Because when i make another player change hes size of body with a localplayer ,it w'ont show for other players so i check on internet to see if character can be refresh so player will see the size change of other players (but i find nothing on the net)

And the code you see said that can be only use by script backend

0
Editing the character or parts on a local script wont replicate to the server. You'll want to do this on a server script. xPolarium 1388 — 5y
0
LoadCharacter() is a method to respawn a user, not refreshing them, it doesn't work that way, they'll just be respawned over and over and over again. Also, afaik I'm not sure if what you're attempting would even work Astralyst 389 — 5y

Answer this question