每个人都知道,在 Roblox 中,您有一个 ReplicatedStorage(用于客户端和服务器)和一个 ServerStorage(仅用于服务器)。
所以我想将我的所有资产存储在 ServerStorage 中,因为开发者/黑客即使尝试也无法看到 ServerStorage。
但是我的游戏有虚拟世界,这意味着客户端在任何给定时间看到的对象都与其他客户端不同,所以我不能只从服务器脚本加载对象,因为这样每个人都会看到它。
我是否可以设置一个远程函数,让客户端调用服务器,然后服务器返回模型对象或其位置或类似的东西?然后我可以使用客户端将模型加载到玩家的工作区中吗?这样我就可以将重要的游戏资产安全地存储在 ServerStorage 中。
您的问题的答案是“是的,您可以!”
首先,您需要在 ReplicatedStorage 中创建一个 RemoteFunction。将此 RemoteFunction 称为“GetModel”
现在,我们将在 StarterPack 内设置一个本地脚本。这个本地脚本应该有以下代码:
local RS = game:GetService("ReplicatedStorage")
local RF = RS:WaitForChild("GetModel")
local model = RF:InvokeServer("ModelName") -- This code can go anywhere you'd like it to go. 'ModelName' is the name of the model you want to get.
print(model.Name) -- This will print the model's name.
好吧,我们已经设置了代码来调用远程函数。现在,让 RemoteFunction 执行一些操作。我们将在 ServerScriptService 中创建一个服务器脚本。这是代码:
local RS = game:GetService("ReplicatedStorage")
local RF = RS:WaitForChild("GetModel")
RF.OnServerInvoke = function(player, modelName)
local model = game.ServerStorage:FindFirstChild(modelName)
if model == nil then
return nil
else
return model
end
end
大部分都是基本代码,从你在问题中所说的看来你对lua的理解很好。希望我对你有帮助! :)