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

How to make a player body scaling changes visible to other players?

Asked by 5 years ago

So i have been trying to make a game where you have to change body part sizes to complete an obstacle course. Here is the local script:

I know I have to use remote events and stuff but everything I have tried doesn't work.

01local player = game.Players.LocalPlayer
02local IQ = Instance.new("NumberValue")
03IQ.Value = 100
04IQ.Name = "IQ"
05IQ.Parent = game.Workspace
06IQ.Parent = game.Players.LocalPlayer.Character
07 
08 
09 
10 
11local function OnClick()
12 
13    local person = player.Character
14    person.Humanoid.HeadScale.Value = person.Humanoid.HeadScale.Value + 0.1000000000000000000
15    IQ.Value = IQ.Value + 10
View all 26 lines...
0
If you have tried remote events, your trying something wrong. RunKittenzRComin 170 — 5y
0
Please send your remote event attempt RunKittenzRComin 170 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

This happens when your remote event set fire on client so people in the server couldn’t see it, you must set the Remote Event Fire on Server, this will be the example : Example :

1local remote = game.ReplicatedStorage.RemoteEvent
2 
3remote.OnServerEvent:Connect(function()
4   print(“Fired!”)
5end

That script will able everyone in the server see the print! This is the fire script server to the printing script working example :

1game.ReplicatedStorage.RemoteEvent:FireServer()

Try this code, if everyone on the server see it, try to execute it with your script, if not work, reply me this comment! Because I’m not in the studio but it must work for you!

Ad

Answer this question