How i can fix this

robloxapp-20221020-1236566.wmv (239.7 KB)

Woah woah, describe it more detailed since we don’t know what you want to achieve. Like what do you need to fix and what is wrong?

1 Like

the bag direction
i dont know how i can do this but the bag in HandlePart like a tool

local Back = game.ReplicatedStorage.Satstm.Handle
local Give = game.Workspace.Map.RobbryPurpel.GiveItmes.ProximityPrompt
local Player = game.Players.LocalPlayer
local Character = Player.Character
local TextLabel = script.Parent.Frame.TextLabel
local Door = workspace.Map.RobbryPurpel["$$$"]
local PartBack = Give.Parent.Back

Give.Triggered:Connect(function()
	
	PartBack.Transparency = 1
	script.Parent.Enabled = true
	local BackClone = Back:Clone()
	BackClone.Parent = Character
	
	local Weld = Instance.new("Weld",BackClone)
	Weld.Part0 = BackClone
	Weld.Part1 = Character.UpperTorso
	
	Door.CanTouch = true
	Door.CanCollide = false
	Door.Transparency = 1
	Give.Enabled = false
	
	local Cahs = Player:FindFirstChild("leaderstats")["$"]
	
	Door.Touched:Connect(function()
		script.Parent.Enabled = false
		BackClone:Destroy()
		Give.Enabled = true
		PartBack.Transparency = 0
		Door.CanTouch = false
		game.ReplicatedStorage.Satstm.RemoteEvent:FireServer()
		
	end)
end)

the local script

maybe that’s because you weld it to uppertorso and not to hand?

image
Uploading: image.png(1)…

lol

That’s when it got welded to a hand?

no in the torso but i need fix theOrientation

Then try to weld it to a hand and if its too high or too low try editing weld C0

image

i like it ty bro