``Luau function onTouched(hit)
if not hit or not hit.Parent then return end
local human = hit.Parent:findFirstChild("Humanoid")
if human and human:IsA("Humanoid") then
local player = game.Players:GetPlayerFromCharacter(hit.Parent)
local Gui = player.PlayerGui["Healthbar"]
local width = Gui.Healthleft.Size.Width
Gui.Healthleft.Size = UDim2.new(0, 1, (width-20), 0)
local X = Gui.Healthleft.Position.X
local Y = Gui.Healthleft.Position.Y
Gui.Healthleft.Position = UDim2.new((X-10), 0, Y, 0)
if Gui.Healthleft.Size <=1 then
script.Parent.Scriptb.Enabled = true
end
wait(0.1)
script.Enabled = false
end
end
script.Parent.Touched:connect(onTouched)```
** You are now Level 2! **