Hi! So after inspecting your code in a quick proof read, and looking at the Output, I have found your error.
Your error is actually quite silly, but common mistake. A simple change in words would fix it!
01 | local Fruittilium = game.Workspace.Fruittilium |
02 | local Player = game.Players.LocalPlayer |
03 | local Mouse = Player:GetMouse() |
04 | Mouse.Button 1 Down:connect( function () |
05 | if Mouse.Target = = Fruittilium then |
06 | print ( "you clicked it" ) |
07 | local Fruit = Fruittilium:Clone() |
08 | Fruit.Parent = game.Workspace |
09 | Fruit.CFrame = Mouse.Hit |
Basically what your mistake was, was that you tried to position the "Fruit" to the Mouse.Hit, which is a CFrame value. The Position property is a Vector3 value.
Just be careful next time, as this does tend to happen.