You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? Keep it simple and clear!
I wanna make blood stick to a surface when the little droplets hits something -
What is the issue? Include screenshots / videos if possible!
They don’t orientate with the surface, but to the orientation of the part
https://gyazo.com/9977bf903ebd2048b74f3bc1feb09f24 -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
- CFrame.lookat
I’m not going to do raycasting unless it’s my only solution
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
Blood Splatter Script
blood.Touched:Connect(function(hit)
local bloodsplatter = game.ReplicatedStorage.BloodSplatter:Clone()
bloodsplatter.Parent = workspace
bloodsplatter.Position = blood.Position + Vector3.new(0,.1,0)
bloodsplatter.Orientation = hit.Orientation
end)