提问人:Артур Заппаров 提问时间:11/17/2023 更新时间:11/18/2023 访问量:12
为什么我的配件没有连接到 roblox 中的播放器?
Why doesnt my accessory attach to the player in roblox?
问:
自定义配件不会附着在玩家身上,而是在远离玩家的地方生成
这是我的剧本
local player = game.Players.LocalPlayer
player.CharacterAdded:Wait()
local human = player.Character:WaitForChild("Humanoid")
local asset = game.ReplicatedStorage.UnionAccessory:Clone()
human:AddAccessory(asset)
我原以为玩家会装备配件并带着它走路,但这并没有发生
答:
0赞
Tsering
11/18/2023
#1
很可能您忘记为附件添加附件。没有依恋,它就会脱落。
评论