ENT.Type = "anim" ENT.Base = "base_gmodentity" ENT.PrintName = "" ENT.Author = "" ENT.Contact = "" ENT.Purpose = "" ENT.Instructions = "" // Set radius function ENT:SetEntityRadius(Radius) self.Entity:SetNetworkedInt("Radius", Radius) end // Get radius function ENT:GetEntityRadius() return self.Entity:GetNetworkedInt("Radius") end // Set type function ENT:SetEntityType(Type) self.Entity:SetNetworkedString("Type", Type) end // Get type function ENT:GetEntityType() return self.Entity:GetNetworkedString("Type") end // Set label function ENT:SetEntityLabel(Text) local Label = "" if (Text != "") then Label = "\nLabel: "..Text end local Type = "\nType: "..self:GetEntityType() Text = "Perimeter Turret "..Type..Label self:SetOverlayText(Text) end