Components/RotateConstantly.cs
using Sandbox;
namespace Battlebugs;
public sealed class RotateConstantly : Component
{
[Property] Angles RotationSpeed { get; set; }
protected override void OnUpdate()
{
WorldRotation *= RotationSpeed * Time.Delta;
}
}