I made a health potion and I've already welded it together with Quenty's script, but I want it so when you press the specified button the potion will appear in the player's left hand and disappear after 1 second.
So, if you've already welded it together, then do this.
--> after button is pressed local item = game:FindService("ReplicatedStorage"):WaitForChild(ITEMNAMEHERE):Clone() item.Parent = Player.Character["Left Hand"] wait(1) item:Destroy()
Put a click detector in the button.
And use API MouseClick()
The parameter in "MouseClick" gives you the PLAYER who clicked it, so remember that.
Challenge yourself, chap, have a good day!