local replicatedStorage = game:GetService("ReplicatedStorage")
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
local Battery = replicatedStorage.PlayerBattery:Clone()
Battery.Parent = character
local weld = Instance.new("Weld")
local HRP = character:FindFirstChild("HumanoidRootPart")
weld.Part0 = HRP
weld.Part1 = Battery
weld.Parent = Battery
end)
end)
Does anyone know how I can get it on the player’s back? It’s currently like this: