so, in this question, I'm kinda asking to learn how to make it so that when I click with the tool equipped, it creates a brick where the player is standing.
Like this. This is a server script in the tool
local tool = script.Parent local mouse tool.Equipped:Connect(function(m) mouse = m end) tool.Activated:Connect(function() if mouse then local Part = Instance.new("Part",workspace) Part.Position = mouse.Hit.P --Anything else you ant to do with the part end end)
More documentation on tools can be found here