I’m wondering if anyone can help me with something, its about placing an object or part.
The problem I have right now is I got the placement to work, but its not where ever I want it to be, for example where ever you have your mouse and click it places and object.
I tried to find the solution, but I’m not that advanced enough at scripting yet, i look online for placement systems and people are using RunService or RenderedStep.
I just want this placement system is to be simple and not hard to read since I’m still learning, I’m intermediate right now when it comes to scripting
Video
robloxapp-20220602-2126220.wmv (763.2 KB)
Code
local Tool = script.Parent
local partChecker = game.ServerStorage.TrapPlacement.BearTrap
Tool.Activated:Connect(function()
if Tool.Parent then
partChecker:Clone().Parent = workspace
end
end)
I really apricate it