如何在Roblox中为您提供积分

时间:2018-09-05 20:24:31

标签: roblox

我在一个脚本中排行榜。这是我的代码:

print("Cash Leaderboard Loaded")


function onPlayerEntered(newPlayer)

    local stats = Instance.new("IntValue")
    stats.Name = "leaderstats"

    local cash = Instance.new("IntValue")
    cash.Name = "Money"       --name of currency (e.g. cash, money,     resources, bucks, etc.)
    cash.Value = 50      --starting money.

    cash.Parent = stats
    stats.Parent = newPlayer
end
game.Players.ChildAdded:connect(onPlayerEntered)

我正在尝试做到这一点,所以当您单击一个块时,它会为您带来更多的钱。 该代码在另一个脚本中。 enter image description here

有人知道怎么做吗?

1 个答案:

答案 0 :(得分:0)

当然!

local CD = script.Parent
local Amount_To_Give = 10
CD.MouseClick:Connect(function(plr)
    plr:WaitForChild('leaderstats').Money.Value = plr:WaitForChild('leaderstats').Money.Value + Amount_To_Give
end)