Hi! As of today, I’ve started to learn how to program in LUAU, and I’m having quite a bit of difficulty determining how I’d make this part stay at a fixed position below (even when jumping) once parented to the folder workspace.
–This is how its put into the workspace normally.
–This is it being shown higher up after jumping
I have looked on the developer forums and the developer hub, but cant seem to find the correct thing I’m looking for. This is possibly due to the fact I have no idea what key words I’m searching for
I have tried adding this onto where the part is positioned at the HumanoidRootPart, but this still doesnt solve the issue when jumping:
CopiedPart.CFrame = HmndRP.CFrame * CFrame.new(0,-2,0)
(This is what it looks like with that implemented)
(and now when jumping and activating)
This is the code in question!
Perfectly aware my code isnt efficient at all, and I’m open to hear ways I can improve it!
local UserInputService = game:GetService("UserInputService")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local AreaDmgTrigger = ReplicatedStorage:WaitForChild("AreaDmgTrigger")
local TweenService = game:GetService("TweenService")
local TweenTimer = TweenInfo.new(2)
local AreaDamage = script:WaitForChild("Meshes").AreaDamagePos
local EndPoint = {}
EndPoint.Size = Vector3.new(1, 27, 29)
AreaDmgTrigger.OnServerEvent:Connect(function(player)
local Character = player.Character
local Hmnd = Character:WaitForChild("Humanoid")
local HmndRP = Character:WaitForChild("HumanoidRootPart")
local EffectHolder = Instance.new("Folder",workspace)
local CopiedPart = AreaDamage:Clone()
local tweeningPart = TweenService:Create(CopiedPart,TweenTimer,EndPoint)
CopiedPart.Parent = EffectHolder
CopiedPart.CFrame = HmndRP.CFrame
CopiedPart.Orientation = Vector3.new(0,0,-90)
wait(0.5)
tweeningPart:Play()
tweeningPart.Completed:Connect(function()
wait(1)
print("TweeningPartCompleted")
EffectHolder:Destroy()
end)
end)
Thanks in advance! – Remnants :).