The output would always result to "Backpack is not a member of Model"
Local Ticket = game.ReplicatedStorage.Ticket Ticket:Clone().Parent = game.Players.LocalPlayer.Character.Backpack
local Ticket = game.ReplicatedStorage.Ticket --local, not Local Ticket:Clone().Parent = game.Players.LocalPlayer.Backpack --Backpack is a member of Player, not Character
This should work
The players backpack can only be accessed through players and not the character.
Local Ticket = game.ReplicatedStorage.Ticket Ticket:Clone().Parent = game.Players.LocalPlayer.Backpack