收到此代码错误。试图制作一个lua脚本,奖励杀死玩家的玩家Roblox

问题描述 投票:-1回答:1

Hrph。下面的代码有什么问题吗?欢迎任何改进]

local function OnPlayerJoin(player)
    local leaderstats = Instance.new ("Folder")
    local currency1 = Instance.new ("IntValue")

    leaderstats.Name = "leaderstats"
    currency1.Name = "Gold"

    leaderstats.Parent = player
    currency1.Parent = leaderstats

    game.Players.CharacterAdded:connect(function(character)
        local Humanoid.Died:connect(function()
            if Humanoid:FindFirstChild("creator") ~=nil then
                local killer = Humanoid.creator.Value
                currency1 = currency1 + 5
            end
        end)
    end)

game.Players.PlayerAdded:Connect(OnPlayerJoin)

end
lua roblox
1个回答
0
投票

我目前在此脚本上只能找到的唯一问题是这个

currency1 = currency1 + 5

应该在哪里

currency1.Value = currency1.Value + 5

由于“ currency1”是一个对象,但它的值是一个属性,如果此答案不能解决问题,请附上您遇到的错误的屏幕截图,并向我们展示会杀死玩家的武器脚本。

© www.soinside.com 2019 - 2024. All rights reserved.