I used a old script from a tutorial but it was old so it didn’t work. hitbox.Parent = workspace
hitbox.CanCollide = false
hitbox.Anchored = true
hitbox.Size = Vector3.new(7,7,7)
hitbox.BrickColor = BrickColor.new("Really red")
hitbox.Transparency = .5
hitbox.CFrame = plr.Character.HumanoidRootPart.CFrame = CFrame.new(0,0, -5)
game.Debris:AddItem(hitbox,1)
local hitboxcooldown = false
hitbox.Touched:Connect(function(hit)
if hit.Parent.Name ~=plr.Name and hit.Parent:FindFirstChild("Humanoid") then
if hitboxcooldown == true then return end
hitboxcooldown = true
hit.Parent:FindFirstChild("Humanoid"):TakeDamage(5)
task.wait(1)
hitboxcooldown = false
end
end)
end)
** You are now Level 1! **