You may have seen me around making scripts with ordertools in them
I’m trying to make a surface gui button move the requested tool from Lighting to a Folder but it doesn’t work (I just wanna move ONE Item, even so loop doesn’t work)
1 | function onClicked() |
2 | local fname = script.Parent.Parent.Name |
3 | local tool = game.Lighting:FindFirstChild(fname.. "Tool" ):Clone() |
4 | tool.Parent = script.Parent.Parent.Parent.ordertools |
5 | end |
6 | script.Parent.MouseButton 1 Down:connect(onClicked) |
Sorry I figured it out already, my tools were in a position so when they spawn they get deleted