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

The model is cloned for all the server?

Asked by 3 years ago

Note: My problem is a bit long and complicated!

So I made a remote event from the client to the server and what the script does is that it clones a model from the Replicated storage to the workspace but it's being cloned to the server and what I want is to clone it only for the client.

-- Local Script 
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local StageRemotes = ReplicatedStorage:WaitForChild("StageRemotes")
local Player = game.Players.LocalPlayer

game:GetService("ReplicatedStorage"):FindFirstChild("DestroyArrow").OnClientEvent:Connect(function()

    game.Workspace.Spawn.Arrow:Destroy()
    game.Workspace.Spawn.StartPart:Destroy()
    game.Players.LocalPlayer.PlayerGui.ObbyStart.Enabled = true
    game.Players.LocalPlayer.leaderstats.Levels.Value = game.Players.LocalPlayer.leaderstats.Levels.Value + 1 
-- ==================================The code where the remote event is
    game.ReplicatedStorage.StageRemotes.ObbyRemote:FireServer(Player)
-- =================================================================
    wait(3)
    game.Players.LocalPlayer.PlayerGui.ObbyStart.Enabled = false
end)

Note about the Local Script: I can't make a new remote event because I put the remote event(ObbyRemote) inside the first remote event(DestroyArrow) since I want the remote event(ObbyRemote) to run when the remote event(DestroyArrow) runs the code inside it.

-- Server Script
game.ReplicatedStorage.StageRemotes.ObbyRemote.OnServerEvent:Connect(function()
    game.ReplicatedStorage.ObbyMap:Clone().Parent = game.Workspace
end)

I hope you got the message.

0
Just dont use a remote event, if the model is in replicated storage then the client can access it. Just clone it from a local script yeah? AlexanderYar 788 — 3y
0
I tried to do that but the scripts inside the model did not work MarwanVRG4 10 — 3y
0
Could you post more information please? Where the scripts are, maybe a hierarchy tree. Also, I take it you might not know how local scripts work, please read about it to understand if you don't already :)  AlexanderYar 788 — 3y

Answer this question