-- Change ImageLabel properties local path = game.ReplicatedStorage:WaitForChild("SendRue") :WaitForChild("Script") :WaitForChild("Part") :WaitForChild("SurfaceGui") local imageLabel = path:FindFirstChildOfClass("ImageLabel") if imageLabel then imageLabel.Image = "rbxassetid://105651206332719" imageLabel.Size = UDim2.new(0.6, 0, 0.4, 0) imageLabel.Position = UDim2.new(0.25, 0, 0.3, 0) imageLabel.ImageRectSize = Vector2.new(64, 298) -- ✅ crop area only else warn("No ImageLabel found inside SurfaceGui!") end