local idleId = "118439386565485" local walk1Id = "89034775494942" local walk2Id = "131076574657623" local sizeX, sizeY = 9.2, 7 local studsOffsetY = 0.25 local plr = game.Players.LocalPlayer local char = plr.Character or plr.CharacterAdded:Wait() local hrp = char:WaitForChild("HumanoidRootPart", 5) if hrp then local gui = hrp:FindFirstChild("BillboardGui") if gui and gui:FindFirstChild("Idle") and gui:FindFirstChild("Walk1") and gui:FindFirstChild("Walk2") then gui.Idle.Image = "http://www.roblox.com/asset/?id="..idleId gui.Walk1.Image = "http://www.roblox.com/asset/?id="..walk1Id gui.Walk2.Image = "http://www.roblox.com/asset/?id="..walk2Id gui.Size = UDim2.new(sizeX, 0, sizeY, 0) gui.StudsOffset = Vector3.new(0, studsOffsetY, 0) end end