I have a button that when clicked will change the color of a part attached to a player. In game, it is in Workspace.[playerign].Egg.Handle and Handle is the part that I want to change the material. I don't want it to change everyones handle color, just the person to click it. I keep geting the error message "Egg is not a valid member of Player" This is in a local script.
script.Parent.MouseButton1Down:Connect(function() wait(0.5) game.Players.LocalPlayer.Egg.Handle.Material = Enum.Material.Neon print("testComplete") end)