I have this script in ServerScriptStorage and StudyBook in ServerStorage
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
local book = game.ServerStorage.StudyBook:Clone()
book.Parent = char
book.PrimaryPart.CFrame = char.LeftHand.CFrame
book.Body.Part0 = char.LeftHand
end)
end)
This is the structure of StudyBook