Hi! I am working on a script that equips a tool and removes a weld. It equips in Roblox Studio and gives an error 'Weld is not a valid member of Backpack'.
Here is an example of the Explorer: gyazo.com/a7936ffca652a624d5446eb1d1613972
Here is the code:
script.Parent.Parent.Parent.Weld.TopSurface = 'Smooth' local player = game.Players.LocalPlayer function onClicked(playerWhoClicked) local copy = game.Workspace.Bottle.WaterBottle:Clone() copy.Parent = game.Players.LocalPlayer.Backpack end script.Parent.ClickDetector.MouseClick:connect(onClicked)
Help D: