Hello! Thank you for clicking on my post. I have been having this problem with this script, and after doing it when I click. The output says, "Players.MasterGamerHD7.Backpack.M I L K.LocalScript:20: attempt to index nil with 'Torso'" Here is the code...
local player = game.Players.LocalPlayer local char = player.Character function GetMilk() local milk = game.Workspace.Milk local m = Instance.new("SpecialMesh", game.Workspace.Milk) m.MeshId = "rbxassetid://489308589" m.TextureId = "rbxassetid://489308634" Instance.new("BodyVelocity", milk) return milk end script.Parent.Equipped:Connect(function(mouse) mouse.Button1Down:Connect(function() local mH = mouse.Hit local Milk1 = GetMilk() game.Workspace.Milk.Transparency = 0 Milk1.CFrame = script.Parent.Handle.CFrame * CFrame.new(char.Torso.CFrame.lookVector * 3) Milk1.CFrame = CFrame.new(Milk1.Position, mH.milk) Milk1.BodyVelocity.velocity = Milk1.CFrame.LookVector * 120 end) end)
PS: I'm trying to make a throw able milk tool...