local cloneName = game.ServerStorage.Items:FindFirstChild(script.Parent.Parent.text.Text) print(cloneName) local clone = cloneName:clone() clone.Parent = game.Workspace clone.Position = Vector3.new(game.Players.LocalPlayer.character.Head.Position)
local cloneName = game.ServerStorage.Items:FindFirstChild(script.Parent.Parent.text.Text) print(cloneName) local clone = cloneName:Clone() -- :clone() got patched idk y clone.Parent = game.Workspace clone.CFrame = game.Players.LocalPlayer.Character.Head.CFrame --when you use Position the clone may go in random directions (above or under the player) and use Character instead of character