I have a very simple script that uses Raycast to create a bullet hole:
local player = game.Players.LocalPlayer
local mouse = player:GetMouse()
local MousePosition = mouse.Hit.Position
local origin = script.Parent.Handle.Position
local Direction = (MousePosition - origin).Unit
local raycastParams = RaycastParams.new()
raycastParams.FilterDescendantsInstances = {script.Parent, player.Character}
raycastParams.FilterType = Enum.RaycastFilterType.Exclude
local ray = workspace:Raycast(origin,Direction * 3500, raycastParams)
if ray then
local hole = game.ReplicatedStorage.BulletHole:Clone()
hole.Parent = workspace
hole.CFrame = CFrame.new(ray.Position, ray.Position + ray.Normal)
end
As you can see, nothing special. But it looks like this:
It sticks out from the part.
I know you can use Surface GUI and create Image Label there, and then everything looks correct:
But does anyone know how to calculate the correct position in SurfaceGUI and create an image there?